| 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 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 void clearBreakDetails(); | 235 void clearBreakDetails(); |
| 236 | 236 |
| 237 String sourceMapURLForScript(const Script&, CompileResult); | 237 String sourceMapURLForScript(const Script&, CompileResult); |
| 238 | 238 |
| 239 String scriptURL(JavaScriptCallFrame*); | 239 String scriptURL(JavaScriptCallFrame*); |
| 240 | 240 |
| 241 typedef HashMap<String, Script> ScriptsMap; | 241 typedef HashMap<String, Script> ScriptsMap; |
| 242 typedef HashMap<String, Vector<String> > BreakpointIdToDebugServerBreakpoint
IdsMap; | 242 typedef HashMap<String, Vector<String> > BreakpointIdToDebugServerBreakpoint
IdsMap; |
| 243 typedef HashMap<String, std::pair<String, BreakpointSource> > DebugServerBre
akpointToBreakpointIdAndSourceMap; | 243 typedef HashMap<String, std::pair<String, BreakpointSource> > DebugServerBre
akpointToBreakpointIdAndSourceMap; |
| 244 | 244 |
| 245 // FIXME: Oilpan: Move InjectedScriptManager to heap in follow-up CL. | 245 RawPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager; |
| 246 InjectedScriptManager* m_injectedScriptManager; | |
| 247 InspectorFrontend::Debugger* m_frontend; | 246 InspectorFrontend::Debugger* m_frontend; |
| 248 RefPtr<ScriptState> m_pausedScriptState; | 247 RefPtr<ScriptState> m_pausedScriptState; |
| 249 ScriptValue m_currentCallStack; | 248 ScriptValue m_currentCallStack; |
| 250 ScriptsMap m_scripts; | 249 ScriptsMap m_scripts; |
| 251 BreakpointIdToDebugServerBreakpointIdsMap m_breakpointIdToDebugServerBreakpo
intIds; | 250 BreakpointIdToDebugServerBreakpointIdsMap m_breakpointIdToDebugServerBreakpo
intIds; |
| 252 DebugServerBreakpointToBreakpointIdAndSourceMap m_serverBreakpoints; | 251 DebugServerBreakpointToBreakpointIdAndSourceMap m_serverBreakpoints; |
| 253 String m_continueToLocationBreakpointId; | 252 String m_continueToLocationBreakpointId; |
| 254 InspectorFrontend::Debugger::Reason::Enum m_breakReason; | 253 InspectorFrontend::Debugger::Reason::Enum m_breakReason; |
| 255 RefPtr<JSONObject> m_breakAuxData; | 254 RefPtr<JSONObject> m_breakAuxData; |
| 256 bool m_javaScriptPauseScheduled; | 255 bool m_javaScriptPauseScheduled; |
| 257 bool m_debuggerStepScheduled; | 256 bool m_debuggerStepScheduled; |
| 258 bool m_steppingFromFramework; | 257 bool m_steppingFromFramework; |
| 259 bool m_pausingOnNativeEvent; | 258 bool m_pausingOnNativeEvent; |
| 260 RawPtrWillBeMember<Listener> m_listener; | 259 RawPtrWillBeMember<Listener> m_listener; |
| 261 | 260 |
| 262 int m_skippedStepInCount; | 261 int m_skippedStepInCount; |
| 263 int m_minFrameCountForSkip; | 262 int m_minFrameCountForSkip; |
| 264 bool m_skipAllPauses; | 263 bool m_skipAllPauses; |
| 265 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp; | 264 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp; |
| 266 AsyncCallStackTracker m_asyncCallStackTracker; | 265 AsyncCallStackTracker m_asyncCallStackTracker; |
| 267 }; | 266 }; |
| 268 | 267 |
| 269 } // namespace blink | 268 } // namespace blink |
| 270 | 269 |
| 271 | 270 |
| 272 #endif // !defined(InspectorDebuggerAgent_h) | 271 #endif // !defined(InspectorDebuggerAgent_h) |
| OLD | NEW |