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

Unified Diff: third_party/WebKit/Source/core/dom/Element.cpp

Issue 2733093003: DevTools: instrument user callbacks based on generic probes, remove NativeBreakpoint. (Closed)
Patch Set: test fixed Created 3 years, 9 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/dom/Element.cpp
diff --git a/third_party/WebKit/Source/core/dom/Element.cpp b/third_party/WebKit/Source/core/dom/Element.cpp
index 945e0dc673290e2e4f6a04363892934c68ea2543..ba3ed0e9dfc40687bbfda0df5bac33689f02e01c 100644
--- a/third_party/WebKit/Source/core/dom/Element.cpp
+++ b/third_party/WebKit/Source/core/dom/Element.cpp
@@ -2873,7 +2873,7 @@ String Element::outerHTML() const {
}
void Element::setInnerHTML(const String& html, ExceptionState& exceptionState) {
- probe::breakIfNeeded(&document(), "Element.setInnerHTML");
+ probe::breakableLocation(&document(), "Element.setInnerHTML");
if (DocumentFragment* fragment = createFragmentForInnerOuterHTML(
html, this, AllowScriptingContent, "innerHTML", exceptionState)) {
ContainerNode* container = this;
« no previous file with comments | « third_party/WebKit/Source/core/dom/Document.cpp ('k') | third_party/WebKit/Source/core/dom/FrameRequestCallbackCollection.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698