| Index: third_party/WebKit/Source/modules/geolocation/Geolocation.cpp
|
| diff --git a/third_party/WebKit/Source/modules/geolocation/Geolocation.cpp b/third_party/WebKit/Source/modules/geolocation/Geolocation.cpp
|
| index ba10471de253b8ce32fa88a7936f9a93efed6bae..e03655ff83fdc2e23734b49a8aa3489a80e85d38 100644
|
| --- a/third_party/WebKit/Source/modules/geolocation/Geolocation.cpp
|
| +++ b/third_party/WebKit/Source/modules/geolocation/Geolocation.cpp
|
| @@ -181,7 +181,7 @@ void Geolocation::getCurrentPosition(PositionCallback* successCallback,
|
|
|
| reportGeolocationViolation(document());
|
| InspectorInstrumentation::NativeBreakpoint nativeBreakpoint(
|
| - document(), "navigator.geolocation.getCurrentPosition", true);
|
| + document(), "Geolocation.getCurrentPosition", true);
|
|
|
| GeoNotifier* notifier =
|
| GeoNotifier::create(this, successCallback, errorCallback, options);
|
| @@ -198,7 +198,7 @@ int Geolocation::watchPosition(PositionCallback* successCallback,
|
|
|
| reportGeolocationViolation(document());
|
| InspectorInstrumentation::NativeBreakpoint nativeBreakpoint(
|
| - document(), "navigator.geolocation.watchPosition", true);
|
| + document(), "Geolocation.watchPosition", true);
|
|
|
| GeoNotifier* notifier =
|
| GeoNotifier::create(this, successCallback, errorCallback, options);
|
|
|