diff options
Diffstat (limited to 'third_party/WebKit/Source/modules/geolocation/Geolocation.h')
-rw-r--r-- | third_party/WebKit/Source/modules/geolocation/Geolocation.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/WebKit/Source/modules/geolocation/Geolocation.h b/third_party/WebKit/Source/modules/geolocation/Geolocation.h index 8e322d3..bb15240 100644 --- a/third_party/WebKit/Source/modules/geolocation/Geolocation.h +++ b/third_party/WebKit/Source/modules/geolocation/Geolocation.h @@ -65,11 +65,11 @@ public: // Creates a oneshot and attempts to obtain a position that meets the // constraints of the options. - void getCurrentPosition(PassOwnPtrWillBeRawPtr<PositionCallback>, PassOwnPtrWillBeRawPtr<PositionErrorCallback>, const Dictionary&); + void getCurrentPosition(PositionCallback*, PositionErrorCallback*, const Dictionary&); // Creates a watcher that will be notified whenever a new position is // available that meets the constraints of the options. - int watchPosition(PassOwnPtrWillBeRawPtr<PositionCallback>, PassOwnPtrWillBeRawPtr<PositionErrorCallback>, const Dictionary&); + int watchPosition(PositionCallback*, PositionErrorCallback*, const Dictionary&); // Removes all references to the watcher, it will not be updated again. void clearWatch(int watchID); |