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

Side by Side Diff: third_party/WebKit/Source/platform/v8_inspector/injected_script_externs.js

Issue 2295913003: [DevTools] Switch from platform/v8_inspector to v8/v8-inspector.h. (Closed)
Patch Set: rebase 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
OLDNEW
(Empty)
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
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

Powered by Google App Engine
This is Rietveld 408576698