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

Side by Side Diff: Source/core/inspector/InjectedScriptExterns.js

Issue 14294004: Implementing console command 'debug'. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Added test. Created 7 years, 8 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) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 */ 83 */
84 InjectedScriptHost.prototype.type = function(object) { } 84 InjectedScriptHost.prototype.type = function(object) { }
85 /** 85 /**
86 * @param {*} object 86 * @param {*} object
87 */ 87 */
88 InjectedScriptHost.prototype.getEventListeners = function(object) { } 88 InjectedScriptHost.prototype.getEventListeners = function(object) { }
89 /** 89 /**
90 * @param {string} expression 90 * @param {string} expression
91 */ 91 */
92 InjectedScriptHost.prototype.evaluate = function(expression) { } 92 InjectedScriptHost.prototype.evaluate = function(expression) { }
93 /**
94 * @param {*} loc
95 */
96 InjectedScriptHost.prototype.setBreakpoint = function(loc) { }
93 97
94 /** 98 /**
95 * @param {function(...)} fun 99 * @param {function(...)} fun
96 * @param {number} scopeNumber 100 * @param {number} scopeNumber
97 * @param {string} variableName 101 * @param {string} variableName
98 * @param {*} newValue 102 * @param {*} newValue
99 */ 103 */
100 InjectedScriptHost.prototype.setFunctionVariableValue = function(fun, scopeNumbe r, variableName, newValue) { } 104 InjectedScriptHost.prototype.setFunctionVariableValue = function(fun, scopeNumbe r, variableName, newValue) { }
101 105
102 /** 106 /**
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 */ 155 */
152 CallSite.prototype.getFileName = function() { } 156 CallSite.prototype.getFileName = function() { }
153 /** 157 /**
154 * @return {number} 158 * @return {number}
155 */ 159 */
156 CallSite.prototype.getLineNumber = function() { } 160 CallSite.prototype.getLineNumber = function() { }
157 /** 161 /**
158 * @return {number} 162 * @return {number}
159 */ 163 */
160 CallSite.prototype.getColumnNumber = function() { } 164 CallSite.prototype.getColumnNumber = function() { }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698