| 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();
|
|
|