mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-11 22:41:02 +00:00
Bug 996677 - Incorrect call DeviceRotationRate() ctor from another one. r=VYV03354
This commit is contained in:
parent
4629ad9ed9
commit
31a6de52da
@ -21,11 +21,6 @@ public:
|
||||
DeviceRotationRate(DeviceMotionEvent* aOwner,
|
||||
Nullable<double> aAlpha, Nullable<double> aBeta,
|
||||
Nullable<double> aGamma);
|
||||
DeviceRotationRate(double aAlpha, double aBeta, double aGamma)
|
||||
{
|
||||
DeviceRotationRate(nullptr, Nullable<double>(aAlpha),
|
||||
Nullable<double>(aBeta), Nullable<double>(aGamma));
|
||||
}
|
||||
|
||||
DeviceMotionEvent* GetParentObject() const
|
||||
{
|
||||
@ -58,11 +53,6 @@ public:
|
||||
DeviceAcceleration(DeviceMotionEvent* aOwner,
|
||||
Nullable<double> aX, Nullable<double> aY,
|
||||
Nullable<double> aZ);
|
||||
DeviceAcceleration(double aX, double aY, double aZ)
|
||||
{
|
||||
DeviceAcceleration(nullptr, Nullable<double>(aX),
|
||||
Nullable<double>(aY), Nullable<double>(aZ));
|
||||
}
|
||||
|
||||
DeviceMotionEvent* GetParentObject() const
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user