| 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 769c95f9a36e2280982ccceab008f5111e3ba1bf..e9f6dafeca73a4e41d96d1abbe4a0da63bc06a2b 100644
|
| --- a/third_party/WebKit/Source/modules/geolocation/Geolocation.cpp
|
| +++ b/third_party/WebKit/Source/modules/geolocation/Geolocation.cpp
|
| @@ -180,8 +180,7 @@ void Geolocation::getCurrentPosition(PositionCallback* successCallback,
|
| return;
|
|
|
| reportGeolocationViolation(document());
|
| - InspectorInstrumentation::breakIfNeeded(document(),
|
| - "Geolocation.getCurrentPosition");
|
| + probe::breakIfNeeded(document(), "Geolocation.getCurrentPosition");
|
|
|
| GeoNotifier* notifier =
|
| GeoNotifier::create(this, successCallback, errorCallback, options);
|
| @@ -197,8 +196,7 @@ int Geolocation::watchPosition(PositionCallback* successCallback,
|
| return 0;
|
|
|
| reportGeolocationViolation(document());
|
| - InspectorInstrumentation::breakIfNeeded(document(),
|
| - "Geolocation.watchPosition");
|
| + probe::breakIfNeeded(document(), "Geolocation.watchPosition");
|
|
|
| GeoNotifier* notifier =
|
| GeoNotifier::create(this, successCallback, errorCallback, options);
|
|
|