Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tor Browser
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Tommy Webb
Tor Browser
Commits
f5cba37b
Commit
f5cba37b
authored
13 years ago
by
Doug Turner
Browse files
Options
Downloads
Patches
Plain Diff
Bug 738121 - disable compassneedscalibration event. r=jdm
parent
ea1e8139
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dom/system/nsDeviceMotion.cpp
+0
-63
0 additions, 63 deletions
dom/system/nsDeviceMotion.cpp
dom/system/nsDeviceMotion.h
+0
-6
0 additions, 6 deletions
dom/system/nsDeviceMotion.h
with
0 additions
and
69 deletions
dom/system/nsDeviceMotion.cpp
+
0
−
63
View file @
f5cba37b
...
...
@@ -240,13 +240,6 @@ nsDeviceMotion::Notify(const mozilla::hal::SensorData& aSensorData)
double
y
=
aSensorData
.
values
()[
1
];
double
z
=
aSensorData
.
values
()[
2
];
SensorAccuracyType
accuracy
=
aSensorData
.
accuracy
();
if
(
accuracy
<=
SENSOR_ACCURACY_LOW
&&
mLastAccuracy
>=
SENSOR_ACCURACY_MED
)
{
FireNeedsCalibration
();
}
mLastAccuracy
=
accuracy
;
nsCOMArray
<
nsIDeviceMotionListener
>
listeners
=
mListeners
;
for
(
PRUint32
i
=
listeners
.
Count
();
i
>
0
;
)
{
--
i
;
...
...
@@ -285,62 +278,6 @@ nsDeviceMotion::Notify(const mozilla::hal::SensorData& aSensorData)
}
}
void
nsDeviceMotion
::
FireNeedsCalibration
()
{
if
(
!
mEnabled
)
return
;
nsCOMArray
<
nsIDeviceMotionListener
>
listeners
=
mListeners
;
for
(
PRUint32
i
=
listeners
.
Count
();
i
>
0
;
)
{
--
i
;
listeners
[
i
]
->
NeedsCalibration
();
}
nsCOMArray
<
nsIDOMWindow
>
windowListeners
;
for
(
PRUint32
i
=
0
;
i
<
mWindowListeners
.
Length
();
i
++
)
{
windowListeners
.
AppendObject
(
mWindowListeners
[
i
]);
}
for
(
PRUint32
i
=
windowListeners
.
Count
();
i
>
0
;
)
{
--
i
;
// check to see if this window is in the background. if
// it is, don't send any device motion to it.
nsCOMPtr
<
nsPIDOMWindow
>
pwindow
=
do_QueryInterface
(
windowListeners
[
i
]);
if
(
!
pwindow
||
!
pwindow
->
GetOuterWindow
()
||
pwindow
->
GetOuterWindow
()
->
IsBackground
())
continue
;
nsCOMPtr
<
nsIDOMDocument
>
domdoc
;
windowListeners
[
i
]
->
GetDocument
(
getter_AddRefs
(
domdoc
));
if
(
domdoc
)
{
nsCOMPtr
<
nsIDOMEventTarget
>
target
=
do_QueryInterface
(
windowListeners
[
i
]);
FireNeedsCalibration
(
domdoc
,
target
);
}
}
}
void
nsDeviceMotion
::
FireNeedsCalibration
(
nsIDOMDocument
*
domdoc
,
nsIDOMEventTarget
*
target
)
{
nsCOMPtr
<
nsIDOMEvent
>
event
;
domdoc
->
CreateEvent
(
NS_LITERAL_STRING
(
"Events"
),
getter_AddRefs
(
event
));
if
(
!
event
)
return
;
event
->
InitEvent
(
NS_LITERAL_STRING
(
"compassneedscalibration"
),
true
,
false
);
nsCOMPtr
<
nsIPrivateDOMEvent
>
privateEvent
=
do_QueryInterface
(
event
);
if
(
privateEvent
)
privateEvent
->
SetTrusted
(
true
);
bool
defaultActionEnabled
=
true
;
target
->
DispatchEvent
(
event
,
&
defaultActionEnabled
);
}
void
nsDeviceMotion
::
FireDOMOrientationEvent
(
nsIDOMDocument
*
domdoc
,
nsIDOMEventTarget
*
target
,
...
...
This diff is collapsed.
Click to expand it.
dom/system/nsDeviceMotion.h
+
0
−
6
View file @
f5cba37b
...
...
@@ -82,11 +82,6 @@ private:
static
void
TimeoutHandler
(
nsITimer
*
aTimer
,
void
*
aClosure
);
protected:
void
FireNeedsCalibration
();
void
FireNeedsCalibration
(
nsIDOMDocument
*
domdoc
,
nsIDOMEventTarget
*
target
);
void
FireDOMOrientationEvent
(
class
nsIDOMDocument
*
domDoc
,
class
nsIDOMEventTarget
*
target
,
double
alpha
,
...
...
@@ -105,7 +100,6 @@ private:
bool
mEnabled
;
mozilla
::
TimeStamp
mLastDOMMotionEventTime
;
mozilla
::
hal
::
SensorAccuracyType
mLastAccuracy
;
nsRefPtr
<
nsDOMDeviceAcceleration
>
mLastAcceleration
;
nsRefPtr
<
nsDOMDeviceAcceleration
>
mLastAccelerationIncluduingGravity
;
nsRefPtr
<
nsDOMDeviceRotationRate
>
mLastRotationRate
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment