| 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 /** | 
| 11  * @param {*} obj | 11  * @param {*} obj | 
|  | 12  */ | 
|  | 13 InjectedScriptHostClass.prototype.nullifyPrototype = function(obj) {} | 
|  | 14 | 
|  | 15 /** | 
|  | 16  * @param {*} obj | 
| 12  * @return {string} | 17  * @return {string} | 
| 13  */ | 18  */ | 
| 14 InjectedScriptHostClass.prototype.internalConstructorName = function(obj) {} | 19 InjectedScriptHostClass.prototype.internalConstructorName = function(obj) {} | 
| 15 | 20 | 
| 16 /** | 21 /** | 
| 17  * @param {*} obj | 22  * @param {*} obj | 
| 18  * @param {function()|undefined} func | 23  * @param {function()|undefined} func | 
| 19  * @return {boolean} | 24  * @return {boolean} | 
| 20  */ | 25  */ | 
| 21 InjectedScriptHostClass.prototype.formatAccessorsAsProperties = function(obj, fu
    nc) {} | 26 InjectedScriptHostClass.prototype.formatAccessorsAsProperties = function(obj, fu
    nc) {} | 
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 57  * @return {!Object} | 62  * @return {!Object} | 
| 58  */ | 63  */ | 
| 59 InjectedScriptHostClass.prototype.proxyTargetValue = function(object) {} | 64 InjectedScriptHostClass.prototype.proxyTargetValue = function(object) {} | 
| 60 | 65 | 
| 61 /** @type {!InjectedScriptHostClass} */ | 66 /** @type {!InjectedScriptHostClass} */ | 
| 62 var InjectedScriptHost; | 67 var InjectedScriptHost; | 
| 63 /** @type {!Window} */ | 68 /** @type {!Window} */ | 
| 64 var inspectedGlobalObject; | 69 var inspectedGlobalObject; | 
| 65 /** @type {number} */ | 70 /** @type {number} */ | 
| 66 var injectedScriptId; | 71 var injectedScriptId; | 
| OLD | NEW | 
|---|