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

Unified Diff: third_party/WebKit/Source/core/page/ChromeClient.cpp

Issue 2727633006: DevTools: Rename InspectorInstrumentation:: namespace into probe:: (Closed)
Patch Set: 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
Index: third_party/WebKit/Source/core/page/ChromeClient.cpp
diff --git a/third_party/WebKit/Source/core/page/ChromeClient.cpp b/third_party/WebKit/Source/core/page/ChromeClient.cpp
index 5c497c153df51b9605eb9d2c6445d8bd408280a1..a22e178652cc00fd08dfd76f189992b3738c537e 100644
--- a/third_party/WebKit/Source/core/page/ChromeClient.cpp
+++ b/third_party/WebKit/Source/core/page/ChromeClient.cpp
@@ -101,9 +101,9 @@ static bool openJavaScriptDialog(LocalFrame* frame,
// otherwise cause the load to continue while we're in the middle of
// executing JavaScript.
ScopedPageSuspender suspender;
- InspectorInstrumentation::willRunJavaScriptDialog(frame, message, dialogType);
+ probe::willRunJavaScriptDialog(frame, message, dialogType);
bool result = delegate();
- InspectorInstrumentation::didRunJavaScriptDialog(frame, result);
+ probe::didRunJavaScriptDialog(frame, result);
return result;
}

Powered by Google App Engine
This is Rietveld 408576698