| Index: Source/core/inspector/InspectorInstrumentation.cpp
|
| diff --git a/Source/core/inspector/InspectorInstrumentation.cpp b/Source/core/inspector/InspectorInstrumentation.cpp
|
| index 2f8743af98518f89df734a36f1ed06f6b4a8e549..daa9277be8ee87cde4cccb71976f8eebd2e14f5c 100644
|
| --- a/Source/core/inspector/InspectorInstrumentation.cpp
|
| +++ b/Source/core/inspector/InspectorInstrumentation.cpp
|
| @@ -125,20 +125,6 @@ bool collectingHTMLParseErrorsImpl(InstrumentingAgents* instrumentingAgents)
|
| return false;
|
| }
|
|
|
| -ScriptSourceCode preprocessImpl(InstrumentingAgents* instrumentingAgents, LocalFrame* frame, const ScriptSourceCode& sourceCode)
|
| -{
|
| - if (InspectorDebuggerAgent* debuggerAgent = instrumentingAgents->inspectorDebuggerAgent())
|
| - return debuggerAgent->preprocess(frame, sourceCode);
|
| - return ScriptSourceCode();
|
| -}
|
| -
|
| -String preprocessEventListenerImpl(InstrumentingAgents* instrumentingAgents, LocalFrame* frame, const String& source, const String& url, const String& functionName)
|
| -{
|
| - if (InspectorDebuggerAgent* debuggerAgent = instrumentingAgents->inspectorDebuggerAgent())
|
| - return debuggerAgent->preprocessEventListener(frame, source, url, functionName);
|
| - return source;
|
| -}
|
| -
|
| void appendAsyncCallStack(ExecutionContext* executionContext, ScriptCallStack* callStack)
|
| {
|
| InstrumentingAgents* instrumentingAgents = instrumentingAgentsFor(executionContext);
|
|
|