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

Unified Diff: Source/WebCore/inspector/InspectorDebuggerAgent.h

Issue 11876015: Merge 139416 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1364/
Patch Set: Created 7 years, 11 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/WebCore/inspector/InspectorDebuggerAgent.h
===================================================================
--- Source/WebCore/inspector/InspectorDebuggerAgent.h (revision 139598)
+++ Source/WebCore/inspector/InspectorDebuggerAgent.h (working copy)
@@ -71,9 +71,6 @@
virtual void canSetScriptSource(ErrorString*, bool*);
virtual void supportsSeparateScriptCompilationAndExecution(ErrorString*, bool*);
- virtual void enable(ErrorString*);
- virtual void disable(ErrorString*);
-
virtual void setFrontend(InspectorFrontend*);
virtual void clearFrontend();
virtual void restore();
@@ -82,6 +79,8 @@
void addMessageToConsole(MessageSource, MessageType);
// Part of the protocol.
+ virtual void enable(ErrorString*);
+ virtual void disable(ErrorString*);
virtual void setBreakpointsActive(ErrorString*, bool active);
virtual void setBreakpointByUrl(ErrorString*, int lineNumber, const String* optionalURL, const String* optionalURLRegex, const int* optionalColumnNumber, const String* optionalCondition, TypeBuilder::Debugger::BreakpointId*, RefPtr<TypeBuilder::Array<TypeBuilder::Debugger::Location> >& locations);
@@ -141,13 +140,13 @@
InjectedScriptManager* injectedScriptManager() { return m_injectedScriptManager; }
virtual InjectedScript injectedScriptForEval(ErrorString*, const int* executionContextId) = 0;
+ virtual void enable();
virtual void disable();
virtual void didPause(ScriptState*, const ScriptValue& callFrames, const ScriptValue& exception);
virtual void didContinue();
void reset();
private:
- void enable();
bool enabled();
PassRefPtr<TypeBuilder::Array<TypeBuilder::Debugger::CallFrame> > currentCallFrames();
« no previous file with comments | « LayoutTests/inspector/debugger/debugger-scripts-reload-expected.txt ('k') | Source/WebCore/inspector/PageDebuggerAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698