| 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;
|
|
|