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

Side by Side Diff: Source/devtools/front_end/sdk/DebuggerModel.js

Issue 723543002: DevTools: Fix wrong pause reason when stepping into an event listener. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: addressed Created 6 years, 1 month 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/core/inspector/InspectorDOMDebuggerAgent.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 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
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
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;
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorDOMDebuggerAgent.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698