Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(185)

Unified Diff: third_party/WebKit/Source/modules/geolocation/Geolocation.cpp

Issue 2700263003: DevTools: normalize native breakpoint names. (Closed)
Patch Set: fixed the test Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/sources/EventListenerBreakpointsSidebarPane.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/sources/EventListenerBreakpointsSidebarPane.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698