summaryrefslogtreecommitdiffstats
path: root/WebCore
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2010-01-15 08:58:33 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2010-01-15 08:58:33 -0800
commit3498801a958b3c41f61e136faad545d1ed71f9f6 (patch)
tree4f5399ce86f738c1b4e8e0b263765669d02ab32a /WebCore
parent8e1ce79e1c9acb5517b2450dddb97e56ba3a4058 (diff)
parent9cc0a61c68a6741965e72024992b3b30bf246192 (diff)
downloadexternal_webkit-3498801a958b3c41f61e136faad545d1ed71f9f6.zip
external_webkit-3498801a958b3c41f61e136faad545d1ed71f9f6.tar.gz
external_webkit-3498801a958b3c41f61e136faad545d1ed71f9f6.tar.bz2
Merge "Removes a superfluous call to GeoNotifier::m_timer::stop() when Geolocation calls back with a position fix."
Diffstat (limited to 'WebCore')
-rw-r--r--WebCore/page/Geolocation.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/WebCore/page/Geolocation.cpp b/WebCore/page/Geolocation.cpp
index 5fbad47..0a7205f 100644
--- a/WebCore/page/Geolocation.cpp
+++ b/WebCore/page/Geolocation.cpp
@@ -497,7 +497,6 @@ void Geolocation::sendPosition(Vector<RefPtr<GeoNotifier> >& notifiers, Geoposit
RefPtr<GeoNotifier> notifier = *it;
ASSERT(notifier->m_successCallback);
- notifier->m_timer.stop();
notifier->m_successCallback->handleEvent(position);
}
}