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

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

Issue 2460073002: [Devtools] Move canvas timeline out of experiments and remove old code (Closed)
Patch Set: changes Created 4 years, 1 month 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 1be8eef424264fff0c1a2a3f8d9ca0ad88f08494..ff6c79e2e39f9f6955489333dfa7ad0b2d8f3249 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
@@ -693,7 +693,6 @@ WebInspector.DataGrid = class extends WebInspector.Object {
}
this._positionResizers();
- this.dispatchEventToListeners(WebInspector.DataGrid.Events.ColumnsResized);
}
/**
@@ -1045,7 +1044,6 @@ WebInspector.DataGrid = class extends WebInspector.Object {
_endResizerDragging() {
this._currentResizer = null;
this._saveColumnWeights();
- this.dispatchEventToListeners(WebInspector.DataGrid.Events.ColumnsResized);
}
/**
@@ -1105,7 +1103,6 @@ WebInspector.DataGrid = class extends WebInspector.Object {
this._positionResizers();
event.preventDefault();
- this.dispatchEventToListeners(WebInspector.DataGrid.Events.ColumnsResized);
}
/**
@@ -1171,7 +1168,6 @@ WebInspector.DataGrid.Events = {
SelectedNode: Symbol('SelectedNode'),
DeselectedNode: Symbol('DeselectedNode'),
SortingChanged: Symbol('SortingChanged'),
- ColumnsResized: Symbol('ColumnsResized'),
PaddingChanged: Symbol('PaddingChanged')
};

Powered by Google App Engine
This is Rietveld 408576698