| OLD | NEW |
| 1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 /** @interface */ | 5 /** @interface */ |
| 6 function InjectedScriptHostClass() | 6 function InjectedScriptHostClass() |
| 7 { | 7 { |
| 8 } | 8 } |
| 9 | 9 |
| 10 /** | 10 /** |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 * @return {number} | 63 * @return {number} |
| 64 */ | 64 */ |
| 65 InjectedScriptHostClass.prototype.bind = function(value, groupName) {} | 65 InjectedScriptHostClass.prototype.bind = function(value, groupName) {} |
| 66 | 66 |
| 67 /** | 67 /** |
| 68 * @param {!Object} object | 68 * @param {!Object} object |
| 69 * @return {!Object} | 69 * @return {!Object} |
| 70 */ | 70 */ |
| 71 InjectedScriptHostClass.prototype.proxyTargetValue = function(object) {} | 71 InjectedScriptHostClass.prototype.proxyTargetValue = function(object) {} |
| 72 | 72 |
| 73 /** |
| 74 * @param {!Object} obj |
| 75 * @return {!Array<string>} |
| 76 */ |
| 77 InjectedScriptHostClass.prototype.keys = function(obj) {} |
| 78 |
| 79 /** |
| 80 * @param {!Object} obj |
| 81 * @return {Object} |
| 82 */ |
| 83 InjectedScriptHostClass.prototype.getPrototypeOf = function(obj) {} |
| 84 |
| 85 /** |
| 86 * @param {!Object} obj |
| 87 * @param {string} prop |
| 88 * @return {Object} |
| 89 */ |
| 90 InjectedScriptHostClass.prototype.getOwnPropertyDescriptor = function(obj, prop)
{} |
| 91 |
| 92 /** |
| 93 * @param {!Object} obj |
| 94 * @return {!Array<string>} |
| 95 */ |
| 96 InjectedScriptHostClass.prototype.getOwnPropertyNames = function(obj) {} |
| 97 |
| 98 /** |
| 99 * @param {!Object} obj |
| 100 * @return {!Array<symbol>} |
| 101 */ |
| 102 InjectedScriptHostClass.prototype.getOwnPropertySymbols = function(obj) {} |
| 103 |
| 73 /** @type {!InjectedScriptHostClass} */ | 104 /** @type {!InjectedScriptHostClass} */ |
| 74 var InjectedScriptHost; | 105 var InjectedScriptHost; |
| 75 /** @type {!Window} */ | 106 /** @type {!Window} */ |
| 76 var inspectedGlobalObject; | 107 var inspectedGlobalObject; |
| 77 /** @type {number} */ | 108 /** @type {number} */ |
| 78 var injectedScriptId; | 109 var injectedScriptId; |
| OLD | NEW |