| 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 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 SkipPauseRequest shouldSkipExceptionPause(); | 208 SkipPauseRequest shouldSkipExceptionPause(); |
| 209 SkipPauseRequest shouldSkipStepPause(); | 209 SkipPauseRequest shouldSkipStepPause(); |
| 210 bool isTopCallFrameInFramework(); | 210 bool isTopCallFrameInFramework(); |
| 211 | 211 |
| 212 void cancelPauseOnNextStatement(); | 212 void cancelPauseOnNextStatement(); |
| 213 void addMessageToConsole(MessageSource, MessageType); | 213 void addMessageToConsole(MessageSource, MessageType); |
| 214 | 214 |
| 215 PassRefPtr<TypeBuilder::Array<TypeBuilder::Debugger::CallFrame> > currentCal
lFrames(); | 215 PassRefPtr<TypeBuilder::Array<TypeBuilder::Debugger::CallFrame> > currentCal
lFrames(); |
| 216 PassRefPtr<TypeBuilder::Debugger::StackTrace> currentAsyncStackTrace(); | 216 PassRefPtr<TypeBuilder::Debugger::StackTrace> currentAsyncStackTrace(); |
| 217 | 217 |
| 218 virtual void didParseSource(const String& scriptId, const Script&) OVERRIDE
FINAL; | 218 virtual void didParseSource(const String& scriptId, const Script&, CompileRe
sult) OVERRIDE FINAL; |
| 219 virtual void failedToParseSource(const String& url, const String& data, int
firstLine, int errorLine, const String& errorMessage) OVERRIDE FINAL; | |
| 220 virtual void didReceiveV8AsyncTaskEvent(ExecutionContext*, const String& eve
ntType, const String& eventName, int id) OVERRIDE FINAL; | 219 virtual void didReceiveV8AsyncTaskEvent(ExecutionContext*, const String& eve
ntType, const String& eventName, int id) OVERRIDE FINAL; |
| 221 | 220 |
| 222 void setPauseOnExceptionsImpl(ErrorString*, int); | 221 void setPauseOnExceptionsImpl(ErrorString*, int); |
| 223 | 222 |
| 224 PassRefPtr<TypeBuilder::Debugger::Location> resolveBreakpoint(const String&
breakpointId, const String& scriptId, const ScriptBreakpoint&, BreakpointSource)
; | 223 PassRefPtr<TypeBuilder::Debugger::Location> resolveBreakpoint(const String&
breakpointId, const String& scriptId, const ScriptBreakpoint&, BreakpointSource)
; |
| 225 void removeBreakpoint(const String& breakpointId); | 224 void removeBreakpoint(const String& breakpointId); |
| 226 void clear(); | 225 void clear(); |
| 227 bool assertPaused(ErrorString*); | 226 bool assertPaused(ErrorString*); |
| 228 void clearBreakDetails(); | 227 void clearBreakDetails(); |
| 229 | 228 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 255 int m_minFrameCountForSkip; | 254 int m_minFrameCountForSkip; |
| 256 bool m_skipAllPauses; | 255 bool m_skipAllPauses; |
| 257 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp; | 256 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp; |
| 258 AsyncCallStackTracker m_asyncCallStackTracker; | 257 AsyncCallStackTracker m_asyncCallStackTracker; |
| 259 }; | 258 }; |
| 260 | 259 |
| 261 } // namespace WebCore | 260 } // namespace WebCore |
| 262 | 261 |
| 263 | 262 |
| 264 #endif // !defined(InspectorDebuggerAgent_h) | 263 #endif // !defined(InspectorDebuggerAgent_h) |
| OLD | NEW |