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

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

Issue 14294004: Implementing console command 'debug'. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 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
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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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;
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorDebuggerAgent.cpp ('k') | Source/devtools/front_end/ScriptsPanel.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698