summaryrefslogtreecommitdiffstats
path: root/WebCore
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2010-01-15 16:03:39 +0000
committerSteve Block <steveblock@google.com>2010-01-15 16:03:39 +0000
commit9cc0a61c68a6741965e72024992b3b30bf246192 (patch)
treecdec801de38f9030b917990f495fdafe5bc3e3ba /WebCore
parent54432b29eb93b7be82c6306805f07b06ca9311b6 (diff)
downloadexternal_webkit-9cc0a61c68a6741965e72024992b3b30bf246192.zip
external_webkit-9cc0a61c68a6741965e72024992b3b30bf246192.tar.gz
external_webkit-9cc0a61c68a6741965e72024992b3b30bf246192.tar.bz2
Removes a superfluous call to GeoNotifier::m_timer::stop() when Geolocation calls back with a position fix.
This call was removed in https://android-git.corp.google.com/g/#change,21293 but inadvertantly added back in https://android-git.corp.google.com/g/#change,21677 See https://android-git.corp.google.com/w/?p=platform/external/webkit.git;a=commitdiff;h=e0330ac957b8434cd2c9c7b5447aaa0faabe77ec This call is not present in webkit.org. Change-Id: I712b5d29871e8bda54340e510c2bd7bc411728ee
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);
}
}