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

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.h

Issue 2219393003: DevTools: Runtime.compileScript with persistScript = false should not report script (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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/platform/v8_inspector/V8DebuggerAgentImpl.h
diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.h b/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.h
index e777f3b2cd8af410476c4078fd8bd789a84b3378..f3761f916aefd72a4ba5c424530957fcf298f584 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.h
@@ -133,6 +133,7 @@ public:
void cancelPauseOnNextStatement();
void breakProgram(const String16& breakReason, std::unique_ptr<protocol::DictionaryValue> data);
void breakProgramOnException(const String16& breakReason, std::unique_ptr<protocol::DictionaryValue> data);
+ void setIgnoreScriptParsedEvents(bool);
void reset();
@@ -212,6 +213,7 @@ private:
int m_recursionLevelForStepOut;
int m_recursionLevelForStepFrame;
bool m_skipAllPauses;
+ bool m_ignoreScriptParsedEvents;
std::unique_ptr<V8Regex> m_blackboxPattern;
protocol::HashMap<String16, std::vector<std::pair<int, int>>> m_blackboxedPositions;

Powered by Google App Engine
This is Rietveld 408576698