summaryrefslogtreecommitdiffstats
path: root/WebCore/page/Geolocation.cpp
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2010-01-22 14:44:13 +0000
committerSteve Block <steveblock@google.com>2010-01-25 14:31:12 +0000
commitdaee1033b2624ef1e03be35756ea75afaa7ea501 (patch)
tree1e7b761d3476f6cd020db2967f0e75246457a8c6 /WebCore/page/Geolocation.cpp
parente69f6aab4f5d93208365709a92a030adadecabf1 (diff)
downloadexternal_webkit-daee1033b2624ef1e03be35756ea75afaa7ea501.zip
external_webkit-daee1033b2624ef1e03be35756ea75afaa7ea501.tar.gz
external_webkit-daee1033b2624ef1e03be35756ea75afaa7ea501.tar.bz2
Bring Geolocation up-to-date with WebKit change 53342 to make suspend/resume public
See http://trac.webkit.org/changeset/53342 Change-Id: Ib28c69a686d72ea4fb17b52b6476bfc5696b1db3
Diffstat (limited to 'WebCore/page/Geolocation.cpp')
-rw-r--r--WebCore/page/Geolocation.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/WebCore/page/Geolocation.cpp b/WebCore/page/Geolocation.cpp
index 5a9768c..231d57a 100644
--- a/WebCore/page/Geolocation.cpp
+++ b/WebCore/page/Geolocation.cpp
@@ -495,14 +495,18 @@ void Geolocation::clearWatch(int watchId)
void Geolocation::suspend()
{
+#if !ENABLE(CLIENT_BASED_GEOLOCATION)
if (hasListeners())
m_service->suspend();
+#endif
}
void Geolocation::resume()
{
+#if !ENABLE(CLIENT_BASED_GEOLOCATION)
if (hasListeners())
m_service->resume();
+#endif
}
void Geolocation::setIsAllowed(bool allowed)