Chromium Code Reviews| Index: third_party/WebKit/Source/platform/v8_inspector/V8Debugger.h |
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8Debugger.h b/third_party/WebKit/Source/platform/v8_inspector/V8Debugger.h |
| index c7ce2b3c71b4df611f198bf08fbe071a8448cc8c..4d967537d175c28806087b5e690bbb42f52c1ffc 100644 |
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8Debugger.h |
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8Debugger.h |
| @@ -85,6 +85,8 @@ public: |
| void asyncTaskFinished(void* task); |
| void allAsyncTasksCanceled(); |
| + void setIgnoreScriptParsedEvents(bool); |
| + |
| private: |
| void compileDebuggerScript(); |
| v8::MaybeLocal<v8::Value> callDebuggerMethod(const char* functionName, int argc, v8::Local<v8::Value> argv[]); |
| @@ -112,6 +114,7 @@ private: |
| v8::Local<v8::Object> m_executionState; |
| v8::Local<v8::Context> m_pausedContext; |
| bool m_runningNestedMessageLoop; |
| + bool m_ignoreScriptParsedEvents; |
|
dgozman
2016/08/09 20:43:08
Let's do the counter to accommodate for nested loo
lushnikov
2016/08/09 22:24:29
Done.
|
| using AsyncTaskToStackTrace = protocol::HashMap<void*, std::unique_ptr<V8StackTraceImpl>>; |
| AsyncTaskToStackTrace m_asyncTaskStacks; |