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

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

Issue 1763193002: [DevTools] Fix more frontend compiler errors (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@caseq-patch
Patch Set: 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 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 07724d12ffa00cfded7327c5896e5b13f086781d..0793b27aad9ea1c96ab5956433b91e1665274637 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
@@ -159,7 +159,7 @@ WebInspector.DataGrid = function(columnsArray, editCallback, deleteCallback, ref
// Keep in sync with .data-grid col.corner style rule.
WebInspector.DataGrid.CornerWidth = 14;
-/** @typedef {!{id: ?string, editable: boolean, longText: ?boolean, sort: !WebInspector.DataGrid.Order, sortable: boolean, align: !WebInspector.DataGrid.Align, nonSelectable: boolean}} */
+/** @typedef {!{id: ?string, editable: boolean, longText: ?boolean, sort: ?WebInspector.DataGrid.Order, sortable: boolean, align: ?WebInspector.DataGrid.Align, nonSelectable: boolean}} */
WebInspector.DataGrid.ColumnDescriptor;
lushnikov 2016/03/04 22:49:18 constructor?
WebInspector.DataGrid.Events = {

Powered by Google App Engine
This is Rietveld 408576698