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

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 d4f590683572c29b626527cf4c3e7c7bd1bf4bd0..7f818fa4b2d511fb11815cd14c1f6d1b21b533fe 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorDebuggerAgent.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorDebuggerAgent.cpp
@@ -260,6 +260,11 @@ void InspectorDebuggerAgent::removeAsyncOperationBreakpoint(ErrorString* errorSt
m_v8DebuggerAgent->removeAsyncOperationBreakpoint(errorString, inOperationId);
}
+void InspectorDebuggerAgent::setSourceMapContent(ErrorString* errorString, const String& inScriptId, const String& inContent)
+{
+ m_v8DebuggerAgent->setSourceMapContent(errorString, inScriptId, inContent);
+}
+
bool InspectorDebuggerAgent::isPaused()
{
return m_v8DebuggerAgent->isPaused();

Powered by Google App Engine
This is Rietveld 408576698