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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/sdk/TracingModel.js

Issue 1666563005: DevTools: merge ScriptCallStack and ScriptAsyncCallStack, move CallStacks from console to Runtime. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: testts Created 4 years, 10 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 /* 1 /*
2 * Copyright 2014 The Chromium Authors. All rights reserved. 2 * Copyright 2014 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 /** 7 /**
8 * @constructor 8 * @constructor
9 * @param {!WebInspector.BackingStorage} backingStorage 9 * @param {!WebInspector.BackingStorage} backingStorage
10 */ 10 */
(...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after
455 this.startTime = startTime; 455 this.startTime = startTime;
456 /** @type {!WebInspector.TracingModel.Thread} */ 456 /** @type {!WebInspector.TracingModel.Thread} */
457 this.thread = thread; 457 this.thread = thread;
458 /** @type {!Object} */ 458 /** @type {!Object} */
459 this.args = {}; 459 this.args = {};
460 460
461 /** @type {?string} */ 461 /** @type {?string} */
462 this.warning = null; 462 this.warning = null;
463 /** @type {?WebInspector.TracingModel.Event} */ 463 /** @type {?WebInspector.TracingModel.Event} */
464 this.initiator = null; 464 this.initiator = null;
465 /** @type {?Array.<!ConsoleAgent.CallFrame>} */ 465 /** @type {?Array.<!RuntimeAgent.CallFrame>} */
466 this.stackTrace = null; 466 this.stackTrace = null;
467 /** @type {?Element} */ 467 /** @type {?Element} */
468 this.previewElement = null; 468 this.previewElement = null;
469 /** @type {?string} */ 469 /** @type {?string} */
470 this.url = null; 470 this.url = null;
471 /** @type {number} */ 471 /** @type {number} */
472 this.backendNodeId = 0; 472 this.backendNodeId = 0;
473 473
474 /** @type {number} */ 474 /** @type {number} */
475 this.selfTime = 0; 475 this.selfTime = 0;
(...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after
943 /** 943 /**
944 * @return {!Array.<!WebInspector.TracingModel.AsyncEvent>} 944 * @return {!Array.<!WebInspector.TracingModel.AsyncEvent>}
945 */ 945 */
946 asyncEvents: function() 946 asyncEvents: function()
947 { 947 {
948 return this._asyncEvents; 948 return this._asyncEvents;
949 }, 949 },
950 950
951 __proto__: WebInspector.TracingModel.NamedObject.prototype 951 __proto__: WebInspector.TracingModel.NamedObject.prototype
952 } 952 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698