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

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

Issue 2292573002: [inspector] Initial import of v8_inspector. (Closed)
Patch Set: format the code, disable cpplint Created 4 years, 3 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/debugger_script_externs.js ('k') | src/inspector/inspector_protocol_config.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 /** @interface */
6 function InjectedScriptHostClass()
7 {
8 }
9
10 /**
11 * @param {*} obj
12 * @return {string}
13 */
14 InjectedScriptHostClass.prototype.internalConstructorName = function(obj) {}
15
16 /**
17 * @param {*} obj
18 * @param {function()|undefined} func
19 * @return {boolean}
20 */
21 InjectedScriptHostClass.prototype.formatAccessorsAsProperties = function(obj, fu nc) {}
22
23 /**
24 * @param {*} obj
25 * @return {string}
26 */
27 InjectedScriptHostClass.prototype.subtype = function(obj) {}
28
29 /**
30 * @param {*} obj
31 * @return {boolean}
32 */
33 InjectedScriptHostClass.prototype.isTypedArray = function(obj) {}
34
35 /**
36 * @param {*} obj
37 * @return {!Array.<*>}
38 */
39 InjectedScriptHostClass.prototype.getInternalProperties = function(obj) {}
40
41 /**
42 * @param {!Object} object
43 * @param {string} propertyName
44 * @return {boolean}
45 */
46 InjectedScriptHostClass.prototype.objectHasOwnProperty = function(object, proper tyName) {}
47
48 /**
49 * @param {*} value
50 * @param {string} groupName
51 * @return {number}
52 */
53 InjectedScriptHostClass.prototype.bind = function(value, groupName) {}
54
55 /**
56 * @param {!Object} object
57 * @return {!Object}
58 */
59 InjectedScriptHostClass.prototype.proxyTargetValue = function(object) {}
60
61 /** @type {!InjectedScriptHostClass} */
62 var InjectedScriptHost;
63 /** @type {!Window} */
64 var inspectedGlobalObject;
65 /** @type {number} */
66 var injectedScriptId;
OLDNEW
« no previous file with comments | « src/inspector/debugger_script_externs.js ('k') | src/inspector/inspector_protocol_config.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698