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

Unified Diff: third_party/WebKit/Source/core/frame/DOMWindow.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
Index: third_party/WebKit/Source/core/frame/DOMWindow.cpp
diff --git a/third_party/WebKit/Source/core/frame/DOMWindow.cpp b/third_party/WebKit/Source/core/frame/DOMWindow.cpp
index f2bd3f1a316dfa25764e81ba3ab0559632583be6..6b33d2435489b7e496174e21edf286f28441d02a 100644
--- a/third_party/WebKit/Source/core/frame/DOMWindow.cpp
+++ b/third_party/WebKit/Source/core/frame/DOMWindow.cpp
@@ -378,8 +378,8 @@ void DOMWindow::close(ExecutionContext* context) {
if (!frame()->shouldClose())
return;
- InspectorInstrumentation::NativeBreakpoint nativeBreakpoint(context, "close",
- true);
+ InspectorInstrumentation::NativeBreakpoint nativeBreakpoint(
+ context, "DOMWindow.close", true);
page->closeSoon();

Powered by Google App Engine
This is Rietveld 408576698