diff options
author | Android (Google) Code Review <android-gerrit@google.com> | 2009-12-18 02:11:06 -0800 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2009-12-18 02:11:06 -0800 |
commit | 6c4eb7eb3d9d196ca2c9b1589aa2d6d9924114b6 (patch) | |
tree | 98b4e2e05fc8c51e0746f4cc274119f0f98bf4c3 /WebCore/platform | |
parent | 2fb528f4cf4b88d350947cec509672a40d1aa9fb (diff) | |
parent | c7d0c5294bbef1855c84c8072058813371f1af16 (diff) | |
download | external_webkit-6c4eb7eb3d9d196ca2c9b1589aa2d6d9924114b6.zip external_webkit-6c4eb7eb3d9d196ca2c9b1589aa2d6d9924114b6.tar.gz external_webkit-6c4eb7eb3d9d196ca2c9b1589aa2d6d9924114b6.tar.bz2 |
Merge change I49687314 into eclair-mr2
* changes:
Fixes a Geolocation bug with cached positions.
Diffstat (limited to 'WebCore/platform')
-rw-r--r-- | WebCore/platform/android/GeolocationServiceAndroid.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/WebCore/platform/android/GeolocationServiceAndroid.cpp b/WebCore/platform/android/GeolocationServiceAndroid.cpp index d44b3f0..43a8f5f 100644 --- a/WebCore/platform/android/GeolocationServiceAndroid.cpp +++ b/WebCore/platform/android/GeolocationServiceAndroid.cpp @@ -92,7 +92,7 @@ bool GeolocationServiceAndroid::startUpdating(PositionOptions* options) void GeolocationServiceAndroid::stopUpdating() { // Called when the Geolocation object has no watches or one shots in - // progress. + // progress. This may be called repeatedly. m_javaBridge.clear(); // Reset last position and error to make sure that we always try to get a // new position from the system service when a request is first made. |