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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui_lazy/DataGrid.js

Issue 2409313003: [Devtools] Canvas network timeline experiment establishes scrolling (Closed)
Patch Set: Merge branch 'master' into NETWORK_TIMELINE_4_SCROLL Created 4 years, 2 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
Index: third_party/WebKit/Source/devtools/front_end/ui_lazy/DataGrid.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui_lazy/DataGrid.js b/third_party/WebKit/Source/devtools/front_end/ui_lazy/DataGrid.js
index 00faa50fe523dd4191da8576dfea490f5f9d2ba0..a58fdda6660666f19c8bd082467a5ca12abbf7cf 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui_lazy/DataGrid.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui_lazy/DataGrid.js
@@ -154,7 +154,8 @@ WebInspector.DataGrid.Events = {
SelectedNode: Symbol("SelectedNode"),
DeselectedNode: Symbol("DeselectedNode"),
SortingChanged: Symbol("SortingChanged"),
- ColumnsResized: Symbol("ColumnsResized")
+ ColumnsResized: Symbol("ColumnsResized"),
+ PaddingChanged: Symbol("PaddingChanged")
}
/** @enum {string} */
@@ -297,6 +298,7 @@ WebInspector.DataGrid.prototype = {
this._bottomFillerRow.style.height = bottom + "px";
else
this._bottomFillerRow.style.height = "auto";
+ this.dispatchEventToListeners(WebInspector.DataGrid.Events.PaddingChanged);
},
/**

Powered by Google App Engine
This is Rietveld 408576698