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

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

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.h
diff --git a/third_party/WebKit/Source/core/inspector/v8/V8DebuggerListener.h b/third_party/WebKit/Source/core/inspector/v8/V8DebuggerListener.h
index d4dd99accff10fe79d016d363254043f5bd56353..f75a67b7b4da232a7b31c907b23b1796ce752948 100644
--- a/third_party/WebKit/Source/core/inspector/v8/V8DebuggerListener.h
+++ b/third_party/WebKit/Source/core/inspector/v8/V8DebuggerListener.h
@@ -59,6 +59,7 @@ public:
int endColumn() const { return m_endColumn; }
bool isContentScript() const { return m_isContentScript; }
bool isInternalScript() const { return m_isInternalScript; }
+ bool isLiveEdit() const { return m_isLiveEdit; }
bool getBlackboxedState(unsigned blackboxGeneration, bool* isBlackboxed) const;
void setBlackboxedState(unsigned blackboxGeneration, bool isBlackboxed);
@@ -73,6 +74,7 @@ public:
Script& setEndColumn(int);
Script& setIsContentScript(bool);
Script& setIsInternalScript(bool);
+ Script& setIsLiveEdit(bool);
private:
String m_url;
@@ -85,6 +87,7 @@ public:
int m_endColumn;
bool m_isContentScript;
bool m_isInternalScript;
+ bool m_isLiveEdit;
// Used from outside for caching.
bool m_isBlackboxedURL;
unsigned m_blackboxGeneration;

Powered by Google App Engine
This is Rietveld 408576698