OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2010 Apple Inc. All rights reserved. |
3 * Copyright (C) 2010-2011 Google Inc. All rights reserved. | 3 * Copyright (C) 2010-2011 Google Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * | 8 * |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 virtual void setPauseOnExceptions(ErrorString*, const String& pauseState) OV
ERRIDE FINAL; | 128 virtual void setPauseOnExceptions(ErrorString*, const String& pauseState) OV
ERRIDE FINAL; |
129 virtual void evaluateOnCallFrame(ErrorString*, | 129 virtual void evaluateOnCallFrame(ErrorString*, |
130 const String& callFrameId, | 130 const String& callFrameId, |
131 const String& expression, | 131 const String& expression, |
132 const String* objectGroup, | 132 const String* objectGroup, |
133 const bool* includeCommandLineAPI, | 133 const bool* includeCommandLineAPI, |
134 const bool* doNotPauseOnExceptionsAndMuteConsole, | 134 const bool* doNotPauseOnExceptionsAndMuteConsole, |
135 const bool* returnByValue, | 135 const bool* returnByValue, |
136 const bool* generatePreview, | 136 const bool* generatePreview, |
137 RefPtr<TypeBuilder::Runtime::RemoteObject>& result, | 137 RefPtr<TypeBuilder::Runtime::RemoteObject>& result, |
138 TypeBuilder::OptOutput<bool>* wasThrown) OVERRIDE FINAL; | 138 TypeBuilder::OptOutput<bool>* wasThrown, |
| 139 RefPtr<TypeBuilder::Debugger::ExceptionDetails>&) OVERRIDE FINAL; |
139 virtual void compileScript(ErrorString*, const String& expression, const Str
ing& sourceURL, const int* executionContextId, TypeBuilder::OptOutput<TypeBuilde
r::Debugger::ScriptId>*, RefPtr<TypeBuilder::Debugger::ExceptionDetails>&) OVERR
IDE; | 140 virtual void compileScript(ErrorString*, const String& expression, const Str
ing& sourceURL, const int* executionContextId, TypeBuilder::OptOutput<TypeBuilde
r::Debugger::ScriptId>*, RefPtr<TypeBuilder::Debugger::ExceptionDetails>&) OVERR
IDE; |
140 virtual void runScript(ErrorString*, const TypeBuilder::Debugger::ScriptId&,
const int* executionContextId, const String* objectGroup, const bool* doNotPaus
eOnExceptionsAndMuteConsole, RefPtr<TypeBuilder::Runtime::RemoteObject>& result,
RefPtr<TypeBuilder::Debugger::ExceptionDetails>&) OVERRIDE; | 141 virtual void runScript(ErrorString*, const TypeBuilder::Debugger::ScriptId&,
const int* executionContextId, const String* objectGroup, const bool* doNotPaus
eOnExceptionsAndMuteConsole, RefPtr<TypeBuilder::Runtime::RemoteObject>& result,
RefPtr<TypeBuilder::Debugger::ExceptionDetails>&) OVERRIDE; |
141 virtual void setOverlayMessage(ErrorString*, const String*) OVERRIDE; | 142 virtual void setOverlayMessage(ErrorString*, const String*) OVERRIDE; |
142 virtual void setVariableValue(ErrorString*, int in_scopeNumber, const String
& in_variableName, const RefPtr<JSONObject>& in_newValue, const String* in_callF
rame, const String* in_functionObjectId) OVERRIDE FINAL; | 143 virtual void setVariableValue(ErrorString*, int in_scopeNumber, const String
& in_variableName, const RefPtr<JSONObject>& in_newValue, const String* in_callF
rame, const String* in_functionObjectId) OVERRIDE FINAL; |
143 virtual void skipStackFrames(ErrorString*, const String* pattern) OVERRIDE F
INAL; | 144 virtual void skipStackFrames(ErrorString*, const String* pattern) OVERRIDE F
INAL; |
144 virtual void setAsyncCallStackDepth(ErrorString*, int depth) OVERRIDE FINAL; | 145 virtual void setAsyncCallStackDepth(ErrorString*, int depth) OVERRIDE FINAL; |
145 | 146 |
146 void schedulePauseOnNextStatement(InspectorFrontend::Debugger::Reason::Enum
breakReason, PassRefPtr<JSONObject> data); | 147 void schedulePauseOnNextStatement(InspectorFrontend::Debugger::Reason::Enum
breakReason, PassRefPtr<JSONObject> data); |
147 void didInstallTimer(ExecutionContext*, int timerId, int timeout, bool singl
eShot); | 148 void didInstallTimer(ExecutionContext*, int timerId, int timeout, bool singl
eShot); |
148 void didRemoveTimer(ExecutionContext*, int timerId); | 149 void didRemoveTimer(ExecutionContext*, int timerId); |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
260 int m_minFrameCountForSkip; | 261 int m_minFrameCountForSkip; |
261 bool m_skipAllPauses; | 262 bool m_skipAllPauses; |
262 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp; | 263 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp; |
263 AsyncCallStackTracker m_asyncCallStackTracker; | 264 AsyncCallStackTracker m_asyncCallStackTracker; |
264 }; | 265 }; |
265 | 266 |
266 } // namespace WebCore | 267 } // namespace WebCore |
267 | 268 |
268 | 269 |
269 #endif // !defined(InspectorDebuggerAgent_h) | 270 #endif // !defined(InspectorDebuggerAgent_h) |
OLD | NEW |