diff options
Diffstat (limited to 'hal/Hal.cpp')
-rw-r--r-- | hal/Hal.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/hal/Hal.cpp b/hal/Hal.cpp index 44be2f510d..8ac9e68470 100644 --- a/hal/Hal.cpp +++ b/hal/Hal.cpp @@ -89,8 +89,6 @@ AssertMainProcess() MOZ_ASSERT(GeckoProcessType_Default == XRE_GetProcessType()); } -#if !defined(MOZ_WIDGET_GONK) - bool WindowIsActive(nsPIDOMWindowInner* aWindow) { @@ -100,8 +98,6 @@ WindowIsActive(nsPIDOMWindowInner* aWindow) return !document->Hidden(); } -#endif // !defined(MOZ_WIDGET_GONK) - StaticAutoPtr<WindowIdentifier::IDArrayType> gLastIDToVibrate; void InitLastIDToVibrate() @@ -123,7 +119,6 @@ Vibrate(const nsTArray<uint32_t>& pattern, const WindowIdentifier &id) { AssertMainThread(); -#if !defined(MOZ_WIDGET_GONK) // Only active windows may start vibrations. If |id| hasn't gone // through the IPC layer -- that is, if our caller is the outside // world, not hal_proxy -- check whether the window is active. If @@ -134,7 +129,6 @@ Vibrate(const nsTArray<uint32_t>& pattern, const WindowIdentifier &id) HAL_LOG("Vibrate: Window is inactive, dropping vibrate."); return; } -#endif // !defined(MOZ_WIDGET_GONK) if (!InSandbox()) { if (!gLastIDToVibrate) { |