summaryrefslogtreecommitdiffstats
path: root/WebKit
diff options
context:
space:
mode:
authorAndroid (Google) Code Review <android-gerrit@google.com>2009-11-09 17:56:54 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2009-11-09 17:56:54 -0800
commitf3df443854d9a26a47c5f48c60b552d9d3c7efdd (patch)
treebc9a52a56885374a6d42a6210fd9bd0597c5ecf1 /WebKit
parent6f9b8a1745fc174f1c436237dde772fca8e47f06 (diff)
parent7de0f59ef4a50e0a204f9918636f10b254865d5e (diff)
downloadexternal_webkit-f3df443854d9a26a47c5f48c60b552d9d3c7efdd.zip
external_webkit-f3df443854d9a26a47c5f48c60b552d9d3c7efdd.tar.gz
external_webkit-f3df443854d9a26a47c5f48c60b552d9d3c7efdd.tar.bz2
Merge change I43c19e84 into eclair
* changes: Stop Geolocation service when browser tab is in the background. Do not merge.
Diffstat (limited to 'WebKit')
-rw-r--r--WebKit/android/jni/WebViewCore.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/WebKit/android/jni/WebViewCore.cpp b/WebKit/android/jni/WebViewCore.cpp
index f129600..b16a69d 100644
--- a/WebKit/android/jni/WebViewCore.cpp
+++ b/WebKit/android/jni/WebViewCore.cpp
@@ -35,6 +35,7 @@
#include "Color.h"
#include "DatabaseTracker.h"
#include "Document.h"
+#include "DOMWindow.h"
#include "Element.h"
#include "Editor.h"
#include "EditorClientAndroid.h"
@@ -47,6 +48,7 @@
#include "FrameLoaderClientAndroid.h"
#include "FrameTree.h"
#include "FrameView.h"
+#include "Geolocation.h"
#include "GraphicsContext.h"
#include "GraphicsJNI.h"
#include "HitTestResult.h"
@@ -64,6 +66,7 @@
#include "InlineTextBox.h"
#include <JNIHelp.h>
#include "KeyboardCodes.h"
+#include "Navigator.h"
#include "Node.h"
#include "Page.h"
#include "PageGroup.h"
@@ -2773,6 +2776,13 @@ static void Pause(JNIEnv* env, jobject obj)
ChromeClientAndroid* chromeClientAndroid = static_cast<ChromeClientAndroid*>(chromeClient);
chromeClientAndroid->storeGeolocationPermissions();
+ Frame* mainFrame = GET_NATIVE_VIEW(env, obj)->mainFrame();
+ for (Frame* frame = mainFrame; frame; frame = frame->tree()->traverseNext()) {
+ Geolocation* geolocation = frame->domWindow()->navigator()->optionalGeolocation();
+ if (geolocation)
+ geolocation->suspend();
+ }
+
ANPEvent event;
SkANP::InitEvent(&event, kLifecycle_ANPEventType);
event.data.lifecycle.action = kPause_ANPLifecycleAction;
@@ -2781,6 +2791,13 @@ static void Pause(JNIEnv* env, jobject obj)
static void Resume(JNIEnv* env, jobject obj)
{
+ Frame* mainFrame = GET_NATIVE_VIEW(env, obj)->mainFrame();
+ for (Frame* frame = mainFrame; frame; frame = frame->tree()->traverseNext()) {
+ Geolocation* geolocation = frame->domWindow()->navigator()->optionalGeolocation();
+ if (geolocation)
+ geolocation->resume();
+ }
+
ANPEvent event;
SkANP::InitEvent(&event, kLifecycle_ANPEventType);
event.data.lifecycle.action = kResume_ANPLifecycleAction;