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

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

Issue 2215153002: [DevTools] Eliminate frameId and isContentScript from js protocol. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: navigation tracker Created 4 years, 4 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 /** @typedef {{ 5 /** @typedef {{
6 type: string, 6 type: string,
7 object: !Object, 7 object: !Object,
8 name: (string|undefined), 8 name: (string|undefined),
9 startLocation: (!RawLocation|undefined), 9 startLocation: (!RawLocation|undefined),
10 endLocation: (!RawLocation|undefined) 10 endLocation: (!RawLocation|undefined)
(...skipping 11 matching lines...) Expand all
22 id: number, 22 id: number,
23 name: string, 23 name: string,
24 sourceURL: (string|undefined), 24 sourceURL: (string|undefined),
25 sourceMappingURL: (string|undefined), 25 sourceMappingURL: (string|undefined),
26 source: string, 26 source: string,
27 startLine: number, 27 startLine: number,
28 endLine: number, 28 endLine: number,
29 startColumn: number, 29 startColumn: number,
30 endColumn: number, 30 endColumn: number,
31 executionContextId: number, 31 executionContextId: number,
32 isContentScript: boolean, 32 executionContextAuxData: string,
33 isInternalScript: boolean 33 isInternalScript: boolean
34 }} */ 34 }} */
35 var FormattedScript; 35 var FormattedScript;
36 36
37 /** @typedef {{ 37 /** @typedef {{
38 functionName: string, 38 functionName: string,
39 location: !RawLocation, 39 location: !RawLocation,
40 this: !Object, 40 this: !Object,
41 scopeChain: !Array<!Scope>, 41 scopeChain: !Array<!Scope>,
42 functionLocation: (RawLocation|undefined), 42 functionLocation: (RawLocation|undefined),
(...skipping 496 matching lines...) Expand 10 before | Expand all | Expand 10 after
539 ScopeMirror.prototype.setVariableValue = function(name, newValue) {} 539 ScopeMirror.prototype.setVariableValue = function(name, newValue) {}
540 540
541 /** 541 /**
542 * @interface 542 * @interface
543 * @extends {Mirror} 543 * @extends {Mirror}
544 */ 544 */
545 function ContextMirror() {} 545 function ContextMirror() {}
546 546
547 /** @return {string|undefined} */ 547 /** @return {string|undefined} */
548 ContextMirror.prototype.data = function() {} 548 ContextMirror.prototype.data = function() {}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698