summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/inspector/InspectorDebuggerAgent.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/inspector/InspectorDebuggerAgent.h')
-rw-r--r--Source/WebCore/inspector/InspectorDebuggerAgent.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/WebCore/inspector/InspectorDebuggerAgent.h b/Source/WebCore/inspector/InspectorDebuggerAgent.h
index 6e45e59..07d2ab9 100644
--- a/Source/WebCore/inspector/InspectorDebuggerAgent.h
+++ b/Source/WebCore/inspector/InspectorDebuggerAgent.h
@@ -73,9 +73,9 @@ public:
void breakProgram(DebuggerEventType type, PassRefPtr<InspectorValue> data);
void pause();
void resume();
- void stepOverStatement();
- void stepIntoStatement();
- void stepOutOfFunction();
+ void stepOver();
+ void stepInto();
+ void stepOut();
void setPauseOnExceptionsState(long pauseState, long* newState);
long pauseOnExceptionsState();
@@ -87,7 +87,7 @@ private:
PassRefPtr<InspectorValue> currentCallFrames();
- virtual void didParseSource(const String& sourceID, const String& url, const String& data, int firstLine, ScriptWorldType);
+ virtual void didParseSource(const String& sourceID, const String& url, const String& data, int lineOffset, int columnOffset, ScriptWorldType);
virtual void failedToParseSource(const String& url, const String& data, int firstLine, int errorLine, const String& errorMessage);
virtual void didPause(ScriptState*);
virtual void didContinue();