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

Unified Diff: Source/core/inspector/InspectorInstrumentation.cpp

Issue 761143003: DevTools: remove ScriptPreprocessor (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 5 years, 10 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: 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);
« no previous file with comments | « Source/core/inspector/InspectorDebuggerAgent.cpp ('k') | Source/core/inspector/InspectorInstrumentationCustomInl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698