| 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 virtual void evaluateOnCallFrame(ErrorString*, | 126 virtual void evaluateOnCallFrame(ErrorString*, |
| 127 const String& callFrameId, | 127 const String& callFrameId, |
| 128 const String& expression, | 128 const String& expression, |
| 129 const String* objectGroup, | 129 const String* objectGroup, |
| 130 const bool* includeCommandLineAPI, | 130 const bool* includeCommandLineAPI, |
| 131 const bool* doNotPauseOnExceptionsAndMuteConsole, | 131 const bool* doNotPauseOnExceptionsAndMuteConsole, |
| 132 const bool* returnByValue, | 132 const bool* returnByValue, |
| 133 const bool* generatePreview, | 133 const bool* generatePreview, |
| 134 RefPtr<TypeBuilder::Runtime::RemoteObject>& result, | 134 RefPtr<TypeBuilder::Runtime::RemoteObject>& result, |
| 135 TypeBuilder::OptOutput<bool>* wasThrown) OVERRIDE FINAL; | 135 TypeBuilder::OptOutput<bool>* wasThrown) OVERRIDE FINAL; |
| 136 virtual void compileScript(ErrorString*, const String& expression, const Str
ing& sourceURL, const int* executionContextId, TypeBuilder::OptOutput<TypeBuilde
r::Debugger::ScriptId>*, TypeBuilder::OptOutput<String>* syntaxErrorMessage) OVE
RRIDE; | 136 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; |
| 137 virtual void runScript(ErrorString*, const TypeBuilder::Debugger::ScriptId&,
const int* executionContextId, const String* objectGroup, const bool* doNotPaus
eOnExceptionsAndMuteConsole, RefPtr<TypeBuilder::Runtime::RemoteObject>& result,
TypeBuilder::OptOutput<bool>* wasThrown) OVERRIDE; | 137 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; |
| 138 virtual void setOverlayMessage(ErrorString*, const String*) OVERRIDE; | 138 virtual void setOverlayMessage(ErrorString*, const String*) OVERRIDE; |
| 139 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; | 139 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; |
| 140 virtual void skipStackFrames(ErrorString*, const String* pattern) OVERRIDE F
INAL; | 140 virtual void skipStackFrames(ErrorString*, const String* pattern) OVERRIDE F
INAL; |
| 141 virtual void setAsyncCallStackDepth(ErrorString*, int depth) OVERRIDE FINAL; | 141 virtual void setAsyncCallStackDepth(ErrorString*, int depth) OVERRIDE FINAL; |
| 142 | 142 |
| 143 void schedulePauseOnNextStatement(InspectorFrontend::Debugger::Reason::Enum
breakReason, PassRefPtr<JSONObject> data); | 143 void schedulePauseOnNextStatement(InspectorFrontend::Debugger::Reason::Enum
breakReason, PassRefPtr<JSONObject> data); |
| 144 void didInstallTimer(ExecutionContext*, int timerId, int timeout, bool singl
eShot); | 144 void didInstallTimer(ExecutionContext*, int timerId, int timeout, bool singl
eShot); |
| 145 void didRemoveTimer(ExecutionContext*, int timerId); | 145 void didRemoveTimer(ExecutionContext*, int timerId); |
| 146 bool willFireTimer(ExecutionContext*, int timerId); | 146 bool willFireTimer(ExecutionContext*, int timerId); |
| 147 void didFireTimer(); | 147 void didFireTimer(); |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 bool m_skipAllPauses; | 253 bool m_skipAllPauses; |
| 254 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp; | 254 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp; |
| 255 AsyncCallStackTracker m_asyncCallStackTracker; | 255 AsyncCallStackTracker m_asyncCallStackTracker; |
| 256 PromiseTracker m_promiseTracker; | 256 PromiseTracker m_promiseTracker; |
| 257 }; | 257 }; |
| 258 | 258 |
| 259 } // namespace WebCore | 259 } // namespace WebCore |
| 260 | 260 |
| 261 | 261 |
| 262 #endif // !defined(InspectorDebuggerAgent_h) | 262 #endif // !defined(InspectorDebuggerAgent_h) |
| OLD | NEW |