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

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

Issue 210243002: DevTools: [Frameworks] Bugfix: do StepOut in framework code after StepIn limit is up. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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
« no previous file with comments | « Source/bindings/v8/ScriptDebugServer.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2010 Apple Inc. All rights reserved.
3 * Copyright (C) 2013 Google Inc. All rights reserved. 3 * Copyright (C) 2013 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 static const char lineNumber[] = "lineNumber"; 69 static const char lineNumber[] = "lineNumber";
70 static const char columnNumber[] = "columnNumber"; 70 static const char columnNumber[] = "columnNumber";
71 static const char condition[] = "condition"; 71 static const char condition[] = "condition";
72 static const char isAnti[] = "isAnti"; 72 static const char isAnti[] = "isAnti";
73 static const char skipStackPattern[] = "skipStackPattern"; 73 static const char skipStackPattern[] = "skipStackPattern";
74 static const char skipAllPauses[] = "skipAllPauses"; 74 static const char skipAllPauses[] = "skipAllPauses";
75 static const char skipAllPausesExpiresOnReload[] = "skipAllPausesExpiresOnReload "; 75 static const char skipAllPausesExpiresOnReload[] = "skipAllPausesExpiresOnReload ";
76 76
77 }; 77 };
78 78
79 static const int numberOfStepsBeforeStepOut = 10; 79 static const int numberOfStepsBeforeStepOut = 20;
80 80
81 const char InspectorDebuggerAgent::backtraceObjectGroup[] = "backtrace"; 81 const char InspectorDebuggerAgent::backtraceObjectGroup[] = "backtrace";
82 82
83 static String breakpointIdSuffix(InspectorDebuggerAgent::BreakpointSource source ) 83 static String breakpointIdSuffix(InspectorDebuggerAgent::BreakpointSource source )
84 { 84 {
85 switch (source) { 85 switch (source) {
86 case InspectorDebuggerAgent::UserBreakpointSource: 86 case InspectorDebuggerAgent::UserBreakpointSource:
87 break; 87 break;
88 case InspectorDebuggerAgent::DebugCommandBreakpointSource: 88 case InspectorDebuggerAgent::DebugCommandBreakpointSource:
89 return ":debug"; 89 return ":debug";
(...skipping 1197 matching lines...) Expand 10 before | Expand all | Expand 10 after
1287 m_scripts.clear(); 1287 m_scripts.clear();
1288 m_breakpointIdToDebugServerBreakpointIds.clear(); 1288 m_breakpointIdToDebugServerBreakpointIds.clear();
1289 m_asyncCallStackTracker.clear(); 1289 m_asyncCallStackTracker.clear();
1290 m_promiseTracker.clear(); 1290 m_promiseTracker.clear();
1291 if (m_frontend) 1291 if (m_frontend)
1292 m_frontend->globalObjectCleared(); 1292 m_frontend->globalObjectCleared();
1293 } 1293 }
1294 1294
1295 } // namespace WebCore 1295 } // namespace WebCore
1296 1296
OLDNEW
« no previous file with comments | « Source/bindings/v8/ScriptDebugServer.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698