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

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

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: address comments 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.cpp
diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.cpp b/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.cpp
index 584c0164e0339ae5b3d39bc8d4e9001d6f6e7a8f..ea549e37c12ed9d25966ba4701d149d42f79e6ba 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.cpp
+++ b/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.cpp
@@ -1164,6 +1164,11 @@ void V8DebuggerAgentImpl::breakProgramOnException(const String16& breakReason, s
breakProgram(breakReason, std::move(data));
}
+void V8DebuggerAgentImpl::setIgnoreScriptParsedEvents(bool ignore)
+{
+ m_debugger->setIgnoreScriptParsedEvents(ignore);
+}
+
bool V8DebuggerAgentImpl::assertPaused(ErrorString* errorString)
{
if (m_pausedContext.IsEmpty()) {

Powered by Google App Engine
This is Rietveld 408576698