| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium 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 15 matching lines...) Expand all Loading... |
| 26 */ | 26 */ |
| 27 InjectedScriptHostClass.prototype.subtype = function(obj) {} | 27 InjectedScriptHostClass.prototype.subtype = function(obj) {} |
| 28 | 28 |
| 29 /** | 29 /** |
| 30 * @param {*} obj | 30 * @param {*} obj |
| 31 * @return {boolean} | 31 * @return {boolean} |
| 32 */ | 32 */ |
| 33 InjectedScriptHostClass.prototype.isTypedArray = function(obj) {} | 33 InjectedScriptHostClass.prototype.isTypedArray = function(obj) {} |
| 34 | 34 |
| 35 /** | 35 /** |
| 36 * @param {!Object} obj | |
| 37 * @return {?Array.<*>} | |
| 38 */ | |
| 39 InjectedScriptHostClass.prototype.collectionEntries = function(obj) {} | |
| 40 | |
| 41 /** | |
| 42 * @param {*} obj | 36 * @param {*} obj |
| 43 * @return {!Array.<*>} | 37 * @return {!Array.<*>} |
| 44 */ | 38 */ |
| 45 InjectedScriptHostClass.prototype.getInternalProperties = function(obj) {} | 39 InjectedScriptHostClass.prototype.getInternalProperties = function(obj) {} |
| 46 | 40 |
| 47 /** | 41 /** |
| 48 * @param {!Function} fn | 42 * @param {!Function} fn |
| 49 * @param {*} receiver | 43 * @param {*} receiver |
| 50 * @param {!Array.<*>=} argv | 44 * @param {!Array.<*>=} argv |
| 51 * @return {*} | 45 * @return {*} |
| (...skipping 18 matching lines...) Expand all Loading... |
| 70 * @return {Object|undefined} | 64 * @return {Object|undefined} |
| 71 */ | 65 */ |
| 72 InjectedScriptHostClass.prototype.prototype = function(object) {} | 66 InjectedScriptHostClass.prototype.prototype = function(object) {} |
| 73 | 67 |
| 74 /** @type {!InjectedScriptHostClass} */ | 68 /** @type {!InjectedScriptHostClass} */ |
| 75 var InjectedScriptHost; | 69 var InjectedScriptHost; |
| 76 /** @type {!Window} */ | 70 /** @type {!Window} */ |
| 77 var inspectedGlobalObject; | 71 var inspectedGlobalObject; |
| 78 /** @type {number} */ | 72 /** @type {number} */ |
| 79 var injectedScriptId; | 73 var injectedScriptId; |
| OLD | NEW |