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

Unified Diff: third_party/WebKit/Source/devtools/front_end/network/NetworkWaterfallColumn.js

Issue 2723203003: [Devtools] Removed @unrestricted from NetworkWaterfallColumn (Closed)
Patch Set: Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/devtools/front_end/network/NetworkWaterfallColumn.js
diff --git a/third_party/WebKit/Source/devtools/front_end/network/NetworkWaterfallColumn.js b/third_party/WebKit/Source/devtools/front_end/network/NetworkWaterfallColumn.js
index 31b03b245c4eaf86e4a1fba0198163ca67ce9cef..0a54b1e49674082e46417a49b68150d023a27c30 100644
--- a/third_party/WebKit/Source/devtools/front_end/network/NetworkWaterfallColumn.js
+++ b/third_party/WebKit/Source/devtools/front_end/network/NetworkWaterfallColumn.js
@@ -1,9 +1,6 @@
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-/**
- * @unrestricted
- */
Network.NetworkWaterfallColumn = class extends UI.VBox {
/**
* @param {number} rowHeight
@@ -25,6 +22,7 @@ Network.NetworkWaterfallColumn = class extends UI.VBox {
this._fontSize = 10;
this._rightPadding = 0;
+ this._scrollTop = 0;
this._rowHeight = rowHeight;
this._headerHeight = 0;
@@ -48,6 +46,9 @@ Network.NetworkWaterfallColumn = class extends UI.VBox {
/** @type {!Map<string, !Array<number>>} */
this._eventDividers = new Map();
+ /** @type {(number|undefined)} */
+ this._updateRequestID;
+
var colorUsage = UI.ThemeSupport.ColorUsage;
this._rowNavigationRequestColor = UI.themeSupport.patchColor('#def', colorUsage.Background);
this._rowStripeColor = UI.themeSupport.patchColor('#f5f5f5', colorUsage.Background);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698