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

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

Issue 1224553008: [DevTools] Move Script and enums from ScriptDebugListener to V8Debugger. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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/MainThreadDebugger.cpp
diff --git a/Source/core/inspector/MainThreadDebugger.cpp b/Source/core/inspector/MainThreadDebugger.cpp
index a4de58f17136b2df6ace51616348f133c48f380f..2a1973d3d66e3c3f95931ad42aec8932967500ca 100644
--- a/Source/core/inspector/MainThreadDebugger.cpp
+++ b/Source/core/inspector/MainThreadDebugger.cpp
@@ -120,7 +120,7 @@ void MainThreadDebugger::addListener(ScriptDebugListener* listener, LocalFrame*
debugger()->enable();
m_listenersMap.set(localFrameRoot, listener);
String contextDataSubstring = "," + String::number(WeakIdentifierMap<LocalFrame>::identifier(localFrameRoot)) + "]";
- Vector<ScriptDebugListener::ParsedScript> compiledScripts;
+ Vector<V8Debugger::ParsedScript> compiledScripts;
debugger()->getCompiledScripts(contextDataSubstring, compiledScripts);
for (size_t i = 0; i < compiledScripts.size(); i++)
listener->didParseSource(compiledScripts[i]);

Powered by Google App Engine
This is Rietveld 408576698