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

Side by Side Diff: src/inspector/injected_script_externs.js

Issue 2770823003: [inspector] Increased chances of successful InjectedScriptSource compilation (Closed)
Patch Set: fixed .isolate Created 3 years, 9 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
« no previous file with comments | « src/inspector/injected-script-source.js ('k') | src/inspector/v8-injected-script-host.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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;
OLDNEW
« no previous file with comments | « src/inspector/injected-script-source.js ('k') | src/inspector/v8-injected-script-host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698