| OLD | NEW |
| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 */ | 85 */ |
| 86 InjectedScriptHost.prototype.type = function(object) { } | 86 InjectedScriptHost.prototype.type = function(object) { } |
| 87 /** | 87 /** |
| 88 * @param {*} object | 88 * @param {*} object |
| 89 */ | 89 */ |
| 90 InjectedScriptHost.prototype.getEventListeners = function(object) { } | 90 InjectedScriptHost.prototype.getEventListeners = function(object) { } |
| 91 /** | 91 /** |
| 92 * @param {string} expression | 92 * @param {string} expression |
| 93 */ | 93 */ |
| 94 InjectedScriptHost.prototype.evaluate = function(expression) { } | 94 InjectedScriptHost.prototype.evaluate = function(expression) { } |
| 95 /** |
| 96 * @param {*} fn |
| 97 */ |
| 98 InjectedScriptHost.prototype.setBreakpoint = function(fn) { } |
| 99 /** |
| 100 * @param {*} fn |
| 101 */ |
| 102 InjectedScriptHost.prototype.removeBreakpoint = function(fn) { } |
| 95 | 103 |
| 96 /** | 104 /** |
| 97 * @param {function(...)} fun | 105 * @param {function(...)} fun |
| 98 * @param {number} scopeNumber | 106 * @param {number} scopeNumber |
| 99 * @param {string} variableName | 107 * @param {string} variableName |
| 100 * @param {*} newValue | 108 * @param {*} newValue |
| 101 */ | 109 */ |
| 102 InjectedScriptHost.prototype.setFunctionVariableValue = function(fun, scopeNumbe
r, variableName, newValue) { } | 110 InjectedScriptHost.prototype.setFunctionVariableValue = function(fun, scopeNumbe
r, variableName, newValue) { } |
| 103 | 111 |
| 104 /** | 112 /** |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 */ | 161 */ |
| 154 CallSite.prototype.getFileName = function() { } | 162 CallSite.prototype.getFileName = function() { } |
| 155 /** | 163 /** |
| 156 * @return {number} | 164 * @return {number} |
| 157 */ | 165 */ |
| 158 CallSite.prototype.getLineNumber = function() { } | 166 CallSite.prototype.getLineNumber = function() { } |
| 159 /** | 167 /** |
| 160 * @return {number} | 168 * @return {number} |
| 161 */ | 169 */ |
| 162 CallSite.prototype.getColumnNumber = function() { } | 170 CallSite.prototype.getColumnNumber = function() { } |
| OLD | NEW |