From 3d6409135960af17a7b0a4f52219221c1a6a6dc3 Mon Sep 17 00:00:00 2001 From: Olli Pettay Date: Tue, 15 Apr 2014 10:59:00 +0200 Subject: [PATCH] Bug 996677 - Incorrect call DeviceRotationRate() ctor from another one. r=VYV03354 --- dom/events/DeviceMotionEvent.h | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/dom/events/DeviceMotionEvent.h b/dom/events/DeviceMotionEvent.h index dec58d04aa9..f751382385c 100644 --- a/dom/events/DeviceMotionEvent.h +++ b/dom/events/DeviceMotionEvent.h @@ -21,11 +21,6 @@ public: DeviceRotationRate(DeviceMotionEvent* aOwner, Nullable aAlpha, Nullable aBeta, Nullable aGamma); - DeviceRotationRate(double aAlpha, double aBeta, double aGamma) - { - DeviceRotationRate(nullptr, Nullable(aAlpha), - Nullable(aBeta), Nullable(aGamma)); - } DeviceMotionEvent* GetParentObject() const { @@ -58,11 +53,6 @@ public: DeviceAcceleration(DeviceMotionEvent* aOwner, Nullable aX, Nullable aY, Nullable aZ); - DeviceAcceleration(double aX, double aY, double aZ) - { - DeviceAcceleration(nullptr, Nullable(aX), - Nullable(aY), Nullable(aZ)); - } DeviceMotionEvent* GetParentObject() const {