Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 87 ConsoleCommandEvaluatedInSelectedCallFrame: "ConsoleCommandEvaluatedInSelect edCallFrame", | 87 ConsoleCommandEvaluatedInSelectedCallFrame: "ConsoleCommandEvaluatedInSelect edCallFrame", |
| 88 BreakpointsActiveStateChanged: "BreakpointsActiveStateChanged" | 88 BreakpointsActiveStateChanged: "BreakpointsActiveStateChanged" |
| 89 } | 89 } |
| 90 | 90 |
| 91 WebInspector.DebuggerModel.BreakReason = { | 91 WebInspector.DebuggerModel.BreakReason = { |
| 92 DOM: "DOM", | 92 DOM: "DOM", |
| 93 EventListener: "EventListener", | 93 EventListener: "EventListener", |
| 94 XHR: "XHR", | 94 XHR: "XHR", |
| 95 Exception: "exception", | 95 Exception: "exception", |
| 96 Assert: "assert", | 96 Assert: "assert", |
| 97 CSPViolation: "CSPViolation" | 97 CSPViolation: "CSPViolation", |
| 98 Debug: "debug" | |
|
vsevik
2013/06/07 13:30:04
DebugCommand
SeRya
2013/06/07 13:53:06
Done.
| |
| 98 } | 99 } |
| 99 | 100 |
| 100 WebInspector.DebuggerModel.prototype = { | 101 WebInspector.DebuggerModel.prototype = { |
| 101 /** | 102 /** |
| 102 * @return {boolean} | 103 * @return {boolean} |
| 103 */ | 104 */ |
| 104 debuggerEnabled: function() | 105 debuggerEnabled: function() |
| 105 { | 106 { |
| 106 return !!this._debuggerEnabled; | 107 return !!this._debuggerEnabled; |
| 107 }, | 108 }, |
| (...skipping 727 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 835 var callFrame = this.callFrames[i]; | 836 var callFrame = this.callFrames[i]; |
| 836 callFrame.dispose(); | 837 callFrame.dispose(); |
| 837 } | 838 } |
| 838 } | 839 } |
| 839 } | 840 } |
| 840 | 841 |
| 841 /** | 842 /** |
| 842 * @type {?WebInspector.DebuggerModel} | 843 * @type {?WebInspector.DebuggerModel} |
| 843 */ | 844 */ |
| 844 WebInspector.debuggerModel = null; | 845 WebInspector.debuggerModel = null; |
| OLD | NEW |