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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorDebuggerAgent.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/InspectorDebuggerAgent.cpp
diff --git a/third_party/WebKit/Source/core/inspector/InspectorDebuggerAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorDebuggerAgent.cpp
index 761fb9df924764b2c7959dcf1b585022a7422106..f418a8b5a8fd4c7bdb289686cb55bed7d641ade3 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorDebuggerAgent.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorDebuggerAgent.cpp
@@ -259,6 +259,11 @@ void InspectorDebuggerAgent::removeAsyncOperationBreakpoint(ErrorString* errorSt
m_v8DebuggerAgent->removeAsyncOperationBreakpoint(errorString, inOperationId);
}
+void InspectorDebuggerAgent::setSourceMapContent(ErrorString* errorString, const String& inScriptId, const String& inSourceMapURL, const String& inContent)
+{
+ m_v8DebuggerAgent->setSourceMapContent(errorString, inScriptId, inSourceMapURL, inContent);
+}
+
bool InspectorDebuggerAgent::isPaused()
{
return m_v8DebuggerAgent->isPaused();

Powered by Google App Engine
This is Rietveld 408576698