Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(306)

Side by Side Diff: Source/core/inspector/InspectorDebuggerAgent.h

Issue 309013005: DevTools: Event listener breakpoint should not stop if happened inside framework. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: addressed Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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)
OLDNEW
« no previous file with comments | « Source/bindings/v8/ScriptDebugServer.cpp ('k') | Source/core/inspector/InspectorDebuggerAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698