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

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

Issue 2772093002: [inspector] exposed builtins for injected script source (Closed)
Patch Set: removed unused variable 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.cc » ('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 /**
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
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;
OLDNEW
« no previous file with comments | « src/inspector/injected-script-source.js ('k') | src/inspector/v8-injected-script-host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698