Index: Source/core/inspector/InspectorDebuggerAgent.cpp |
diff --git a/Source/core/inspector/InspectorDebuggerAgent.cpp b/Source/core/inspector/InspectorDebuggerAgent.cpp |
index bc6e39af44dd22ac01dae9da13a8baf1e1711f01..d9722c0b4e0bcbd8434067a50726c68eadbcb131 100644 |
--- a/Source/core/inspector/InspectorDebuggerAgent.cpp |
+++ b/Source/core/inspector/InspectorDebuggerAgent.cpp |
@@ -198,7 +198,6 @@ void InspectorDebuggerAgent::disable() |
scriptDebugServer().clearBreakpoints(); |
scriptDebugServer().clearCompiledScripts(); |
- scriptDebugServer().clearPreprocessor(); |
stopListeningScriptDebugServer(); |
clear(); |
@@ -334,16 +333,6 @@ void InspectorDebuggerAgent::addMessageToConsole(ConsoleMessage* consoleMessage) |
breakProgram(InspectorFrontend::Debugger::Reason::Assert, nullptr); |
} |
-String InspectorDebuggerAgent::preprocessEventListener(LocalFrame* frame, const String& source, const String& url, const String& functionName) |
-{ |
- return scriptDebugServer().preprocessEventListener(frame, source, url, functionName); |
-} |
- |
-ScriptSourceCode InspectorDebuggerAgent::preprocess(LocalFrame* frame, const ScriptSourceCode& sourceCode) |
-{ |
- return scriptDebugServer().preprocess(frame, sourceCode); |
-} |
- |
static PassRefPtr<JSONObject> buildObjectForBreakpointCookie(const String& url, int lineNumber, int columnNumber, const String& condition, bool isRegex) |
{ |
RefPtr<JSONObject> breakpointObject = JSONObject::create(); |