Index: Source/core/inspector/PageDebuggerAgent.cpp |
diff --git a/Source/core/inspector/PageDebuggerAgent.cpp b/Source/core/inspector/PageDebuggerAgent.cpp |
index 9afa678bfd8ee4dc8646b65bff061af7d4cba24a..c5dba5df68f9a8e8f77790c8e8483f61ebcd74b8 100644 |
--- a/Source/core/inspector/PageDebuggerAgent.cpp |
+++ b/Source/core/inspector/PageDebuggerAgent.cpp |
@@ -147,20 +147,6 @@ void PageDebuggerAgent::didClearDocumentOfWindowObject(LocalFrame* frame) |
scriptDebugServer().setPreprocessorSource(m_pageAgent->scriptPreprocessorSource()); |
} |
-String PageDebuggerAgent::preprocessEventListener(LocalFrame* frame, const String& source, const String& url, const String& functionName) |
vsevik
2014/08/06 07:26:39
I believe this is actually the code that was inten
pdr.
2014/08/06 20:11:47
I see what you mean, but I think this was just add
vsevik
2014/08/07 13:43:35
I meant that we might want to add another implemen
|
-{ |
- ASSERT(frame); |
- ASSERT(m_pageScriptDebugServer); |
- return m_pageScriptDebugServer->preprocessEventListener(frame, source, url, functionName); |
-} |
- |
-PassOwnPtr<ScriptSourceCode> PageDebuggerAgent::preprocess(LocalFrame* frame, const ScriptSourceCode& sourceCode) |
-{ |
- ASSERT(m_pageScriptDebugServer); |
- ASSERT(frame); |
- return m_pageScriptDebugServer->preprocess(frame, sourceCode); |
-} |
- |
void PageDebuggerAgent::didCommitLoad(LocalFrame* frame, DocumentLoader* loader) |
{ |
Frame* mainFrame = frame->page()->deprecatedLocalMainFrame(); |