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

Unified Diff: third_party/WebKit/Source/core/inspector/v8/V8DebuggerListener.cpp

Issue 1409223006: DevTools: replace content provider when re-adding into network project (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Same with isLiveEdit flag in a scriptParsed. Created 5 years, 1 month 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/inspector/v8/V8DebuggerListener.cpp
diff --git a/third_party/WebKit/Source/core/inspector/v8/V8DebuggerListener.cpp b/third_party/WebKit/Source/core/inspector/v8/V8DebuggerListener.cpp
index 033e487cb274121189bfa6246ab0673663952e89..edef09e6f1c601dbb45c6e6ea559fa017ef8bdfb 100644
--- a/third_party/WebKit/Source/core/inspector/v8/V8DebuggerListener.cpp
+++ b/third_party/WebKit/Source/core/inspector/v8/V8DebuggerListener.cpp
@@ -17,6 +17,8 @@ V8DebuggerListener::Script::Script()
, m_endLine(0)
, m_endColumn(0)
, m_isContentScript(false)
+ , m_isInternalScript(false)
+ , m_isLiveEdit(false)
, m_isBlackboxedURL(false)
, m_blackboxGeneration(kBlackboxUnknown)
{
@@ -104,4 +106,10 @@ V8DebuggerListener::Script& V8DebuggerListener::Script::setIsInternalScript(bool
return *this;
}
+V8DebuggerListener::Script& V8DebuggerListener::Script::setIsLiveEdit(bool isLiveEdit)
+{
+ m_isLiveEdit = isLiveEdit;
+ return *this;
+}
+
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698