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 RefPtr<ScriptState> m_pausedScriptState; | 229 RefPtr<ScriptState> m_pausedScriptState; |
230 ScriptValue m_currentCallStack; | 230 ScriptValue m_currentCallStack; |
231 ScriptsMap m_scripts; | 231 ScriptsMap m_scripts; |
232 BreakpointIdToDebugServerBreakpointIdsMap m_breakpointIdToDebugServerBreakpo
intIds; | 232 BreakpointIdToDebugServerBreakpointIdsMap m_breakpointIdToDebugServerBreakpo
intIds; |
233 DebugServerBreakpointToBreakpointIdAndSourceMap m_serverBreakpoints; | 233 DebugServerBreakpointToBreakpointIdAndSourceMap m_serverBreakpoints; |
234 String m_continueToLocationBreakpointId; | 234 String m_continueToLocationBreakpointId; |
235 InspectorFrontend::Debugger::Reason::Enum m_breakReason; | 235 InspectorFrontend::Debugger::Reason::Enum m_breakReason; |
236 RefPtr<JSONObject> m_breakAuxData; | 236 RefPtr<JSONObject> m_breakAuxData; |
237 bool m_javaScriptPauseScheduled; | 237 bool m_javaScriptPauseScheduled; |
238 bool m_debuggerStepScheduled; | 238 bool m_debuggerStepScheduled; |
| 239 bool m_pausingOnNativeEvent; |
239 Listener* m_listener; | 240 Listener* m_listener; |
240 | 241 |
241 int m_skipStepInCount; | 242 int m_skippedStepInCount; |
| 243 int m_minFrameCountForSkip; |
242 bool m_skipAllPauses; | 244 bool m_skipAllPauses; |
243 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp; | 245 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp; |
244 AsyncCallStackTracker m_asyncCallStackTracker; | 246 AsyncCallStackTracker m_asyncCallStackTracker; |
245 }; | 247 }; |
246 | 248 |
247 } // namespace WebCore | 249 } // namespace WebCore |
248 | 250 |
249 | 251 |
250 #endif // !defined(InspectorDebuggerAgent_h) | 252 #endif // !defined(InspectorDebuggerAgent_h) |
OLD | NEW |