diff options
| author | Steve Block <steveblock@google.com> | 2010-04-23 13:24:53 -0700 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2010-04-23 13:24:53 -0700 |
| commit | 74ffb4044537f880e0b636f4a3d1963fd165b7bf (patch) | |
| tree | 29fc4dfea0546906e8755fb9e78587377c36f895 /WebKit | |
| parent | f80475e8838c2da4c9d48fdccee9c1ad53492429 (diff) | |
| parent | 2171a24e6063b6c60a403946c9ed53d3ebf08762 (diff) | |
| download | external_webkit-74ffb4044537f880e0b636f4a3d1963fd165b7bf.zip external_webkit-74ffb4044537f880e0b636f4a3d1963fd165b7bf.tar.gz external_webkit-74ffb4044537f880e0b636f4a3d1963fd165b7bf.tar.bz2 | |
Merge "Fixes the Geolocation mock position timestamp"
Diffstat (limited to 'WebKit')
| -rwxr-xr-x | WebKit/android/jni/MockGeolocation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/WebKit/android/jni/MockGeolocation.cpp b/WebKit/android/jni/MockGeolocation.cpp index df580c3..1c236c3 100755 --- a/WebKit/android/jni/MockGeolocation.cpp +++ b/WebKit/android/jni/MockGeolocation.cpp @@ -53,7 +53,7 @@ static void setPosition(JNIEnv* env, jobject, double latitude, double longitude, false, 0.0, // altitudeAccuracy, false, 0.0, // heading false, 0.0); // speed - RefPtr<Geoposition> position = Geoposition::create(coordinates.release(), WTF::currentTime()); + RefPtr<Geoposition> position = Geoposition::create(coordinates.release(), WTF::currentTimeMS()); GeolocationServiceMock::setPosition(position.release()); } |
