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

Unified Diff: sky/engine/v8_inspector/InspectorDebuggerAgent.cpp

Issue 754463004: Remove ScriptPreprocessor (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 years 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
« no previous file with comments | « sky/engine/v8_inspector/InspectorDebuggerAgent.h ('k') | sky/engine/v8_inspector/PageDebuggerAgent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/v8_inspector/InspectorDebuggerAgent.cpp
diff --git a/sky/engine/v8_inspector/InspectorDebuggerAgent.cpp b/sky/engine/v8_inspector/InspectorDebuggerAgent.cpp
index b9923fa1602ad244860188102ebf4cd27c10556c..c177275be78aa761976c5ca1a16f6d30481fb66f 100644
--- a/sky/engine/v8_inspector/InspectorDebuggerAgent.cpp
+++ b/sky/engine/v8_inspector/InspectorDebuggerAgent.cpp
@@ -155,7 +155,6 @@ void InspectorDebuggerAgent::disable()
scriptDebugServer().clearBreakpoints();
scriptDebugServer().clearCompiledScripts();
- scriptDebugServer().clearPreprocessor();
stopListeningScriptDebugServer();
clear();
@@ -274,16 +273,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);
-}
-
-PassOwnPtr<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, bool isAnti)
{
RefPtr<JSONObject> breakpointObject = JSONObject::create();
« no previous file with comments | « sky/engine/v8_inspector/InspectorDebuggerAgent.h ('k') | sky/engine/v8_inspector/PageDebuggerAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698