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

Unified Diff: third_party/WebKit/Source/core/inspector/v8/V8DebuggerScript.cpp

Issue 1583383003: [DevTools] Send source map content from frontend to backend (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@blackbox-inline-source-map
Patch Set: Created 4 years, 11 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/core/inspector/v8/V8DebuggerScript.cpp
diff --git a/third_party/WebKit/Source/core/inspector/v8/V8DebuggerScript.cpp b/third_party/WebKit/Source/core/inspector/v8/V8DebuggerScript.cpp
index fea3c57fa7fb4bc298bd5408697cc653ddaf195f..b66d2b46b8bafb3fbebbaf7c648888ca805a3696 100644
--- a/third_party/WebKit/Source/core/inspector/v8/V8DebuggerScript.cpp
+++ b/third_party/WebKit/Source/core/inspector/v8/V8DebuggerScript.cpp
@@ -44,6 +44,12 @@ void V8DebuggerScript::setBlackboxedState(unsigned blackboxGeneration, bool isBl
m_blackboxGeneration = blackboxGeneration;
}
+void V8DebuggerScript::invalidateBlackboxedState()
+{
+ m_isBlackboxedURL = false;
+ m_blackboxGeneration = kBlackboxUnknown;
+}
+
V8DebuggerScript& V8DebuggerScript::setURL(const String& url)
{
m_url = url;

Powered by Google App Engine
This is Rietveld 408576698