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

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

Issue 2102453003: [DevTools] Move collectionEntries to internalProperties in protocol (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
1 // Copyright 2015 The Chromium Authors. All rights reserved. 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 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 15 matching lines...) Expand all
26 */ 26 */
27 InjectedScriptHostClass.prototype.subtype = function(obj) {} 27 InjectedScriptHostClass.prototype.subtype = function(obj) {}
28 28
29 /** 29 /**
30 * @param {*} obj 30 * @param {*} obj
31 * @return {boolean} 31 * @return {boolean}
32 */ 32 */
33 InjectedScriptHostClass.prototype.isTypedArray = function(obj) {} 33 InjectedScriptHostClass.prototype.isTypedArray = function(obj) {}
34 34
35 /** 35 /**
36 * @param {!Object} obj
37 * @return {?Array.<*>}
38 */
39 InjectedScriptHostClass.prototype.collectionEntries = function(obj) {}
40
41 /**
42 * @param {*} obj 36 * @param {*} obj
43 * @return {!Array.<*>} 37 * @return {!Array.<*>}
44 */ 38 */
45 InjectedScriptHostClass.prototype.getInternalProperties = function(obj) {} 39 InjectedScriptHostClass.prototype.getInternalProperties = function(obj) {}
46 40
47 /** 41 /**
48 * @param {!Function} fn 42 * @param {!Function} fn
49 * @param {*} receiver 43 * @param {*} receiver
50 * @param {!Array.<*>=} argv 44 * @param {!Array.<*>=} argv
51 * @return {*} 45 * @return {*}
(...skipping 18 matching lines...) Expand all
70 * @return {Object|undefined} 64 * @return {Object|undefined}
71 */ 65 */
72 InjectedScriptHostClass.prototype.prototype = function(object) {} 66 InjectedScriptHostClass.prototype.prototype = function(object) {}
73 67
74 /** @type {!InjectedScriptHostClass} */ 68 /** @type {!InjectedScriptHostClass} */
75 var InjectedScriptHost; 69 var InjectedScriptHost;
76 /** @type {!Window} */ 70 /** @type {!Window} */
77 var inspectedGlobalObject; 71 var inspectedGlobalObject;
78 /** @type {number} */ 72 /** @type {number} */
79 var injectedScriptId; 73 var injectedScriptId;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698