| 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 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 void setPauseOnExceptionsImpl(ErrorString*, int); | 229 void setPauseOnExceptionsImpl(ErrorString*, int); |
| 230 | 230 |
| 231 PassRefPtr<TypeBuilder::Debugger::Location> resolveBreakpoint(const String&
breakpointId, const String& scriptId, const ScriptBreakpoint&, BreakpointSource)
; | 231 PassRefPtr<TypeBuilder::Debugger::Location> resolveBreakpoint(const String&
breakpointId, const String& scriptId, const ScriptBreakpoint&, BreakpointSource)
; |
| 232 void removeBreakpoint(const String& breakpointId); | 232 void removeBreakpoint(const String& breakpointId); |
| 233 void clear(); | 233 void clear(); |
| 234 bool assertPaused(ErrorString*); | 234 bool assertPaused(ErrorString*); |
| 235 void clearBreakDetails(); | 235 void clearBreakDetails(); |
| 236 | 236 |
| 237 String sourceMapURLForScript(const Script&, CompileResult); | 237 String sourceMapURLForScript(const Script&, CompileResult); |
| 238 | 238 |
| 239 PassRefPtrWillBeRawPtr<JavaScriptCallFrame> topCallFrameSkipUnknownSources()
; |
| 239 String scriptURL(JavaScriptCallFrame*); | 240 String scriptURL(JavaScriptCallFrame*); |
| 240 | 241 |
| 241 typedef HashMap<String, Script> ScriptsMap; | 242 typedef HashMap<String, Script> ScriptsMap; |
| 242 typedef HashMap<String, Vector<String> > BreakpointIdToDebugServerBreakpoint
IdsMap; | 243 typedef HashMap<String, Vector<String> > BreakpointIdToDebugServerBreakpoint
IdsMap; |
| 243 typedef HashMap<String, std::pair<String, BreakpointSource> > DebugServerBre
akpointToBreakpointIdAndSourceMap; | 244 typedef HashMap<String, std::pair<String, BreakpointSource> > DebugServerBre
akpointToBreakpointIdAndSourceMap; |
| 244 | 245 |
| 245 RawPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager; | 246 RawPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager; |
| 246 InspectorFrontend::Debugger* m_frontend; | 247 InspectorFrontend::Debugger* m_frontend; |
| 247 RefPtr<ScriptState> m_pausedScriptState; | 248 RefPtr<ScriptState> m_pausedScriptState; |
| 248 ScriptValue m_currentCallStack; | 249 ScriptValue m_currentCallStack; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 262 int m_minFrameCountForSkip; | 263 int m_minFrameCountForSkip; |
| 263 bool m_skipAllPauses; | 264 bool m_skipAllPauses; |
| 264 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp; | 265 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp; |
| 265 AsyncCallStackTracker m_asyncCallStackTracker; | 266 AsyncCallStackTracker m_asyncCallStackTracker; |
| 266 }; | 267 }; |
| 267 | 268 |
| 268 } // namespace blink | 269 } // namespace blink |
| 269 | 270 |
| 270 | 271 |
| 271 #endif // !defined(InspectorDebuggerAgent_h) | 272 #endif // !defined(InspectorDebuggerAgent_h) |
| OLD | NEW |