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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 PromiseRejection: "promiseRejection", | 96 PromiseRejection: "promiseRejection", |
97 Assert: "assert", | 97 Assert: "assert", |
98 CSPViolation: "CSPViolation", | 98 CSPViolation: "CSPViolation", |
99 DebugCommand: "debugCommand" | 99 DebugCommand: "debugCommand", |
| 100 Other: "other" |
100 } | 101 } |
101 | 102 |
102 WebInspector.DebuggerModel.prototype = { | 103 WebInspector.DebuggerModel.prototype = { |
103 /** | 104 /** |
104 * @return {boolean} | 105 * @return {boolean} |
105 */ | 106 */ |
106 debuggerEnabled: function() | 107 debuggerEnabled: function() |
107 { | 108 { |
108 return !!this._debuggerEnabled; | 109 return !!this._debuggerEnabled; |
109 }, | 110 }, |
(...skipping 983 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1093 return this.target().runtimeModel.createRemoteObject(/** @type {!Runtime
Agent.RemoteObject} */(this.auxData)); | 1094 return this.target().runtimeModel.createRemoteObject(/** @type {!Runtime
Agent.RemoteObject} */(this.auxData)); |
1094 }, | 1095 }, |
1095 | 1096 |
1096 __proto__: WebInspector.SDKObject.prototype | 1097 __proto__: WebInspector.SDKObject.prototype |
1097 } | 1098 } |
1098 | 1099 |
1099 /** | 1100 /** |
1100 * @type {!WebInspector.DebuggerModel} | 1101 * @type {!WebInspector.DebuggerModel} |
1101 */ | 1102 */ |
1102 WebInspector.debuggerModel; | 1103 WebInspector.debuggerModel; |
OLD | NEW |