| 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) 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |