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

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

Issue 2716993002: [Devtools] Change logic of DataGrid's padding-left for grouping (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
Index: third_party/WebKit/Source/devtools/front_end/network/NetworkLogViewColumns.js
diff --git a/third_party/WebKit/Source/devtools/front_end/network/NetworkLogViewColumns.js b/third_party/WebKit/Source/devtools/front_end/network/NetworkLogViewColumns.js
index 37d0a06fbc967884c595a6e873a1f32d18855c7f..ecb7431d5ccee0400c92967e0f586d61a99e2d7f 100644
--- a/third_party/WebKit/Source/devtools/front_end/network/NetworkLogViewColumns.js
+++ b/third_party/WebKit/Source/devtools/front_end/network/NetworkLogViewColumns.js
@@ -53,6 +53,7 @@ Network.NetworkLogViewColumns = class {
id: columnConfig.id,
title: columnConfig.title,
sortable: columnConfig.sortable,
+ disclosure: columnConfig.disclosure,
align: columnConfig.align,
nonSelectable: columnConfig.nonSelectable,
weight: columnConfig.weight
@@ -609,6 +610,7 @@ Network.NetworkLogViewColumns._initialSortColumn = 'waterfall';
* subtitle: (string|null),
* visible: boolean,
* weight: number,
+ * disclosure: boolean,
* hideable: boolean,
* nonSelectable: boolean,
* sortable: boolean,
@@ -635,6 +637,7 @@ Network.NetworkLogViewColumns._defaultColumnConfig = {
weight: 6,
sortable: true,
hideable: true,
+ disclosure: false,
nonSelectable: true,
isResponseHeader: false,
alwaysVisible: false,
@@ -651,6 +654,7 @@ Network.NetworkLogViewColumns._defaultColumns = [
subtitle: Common.UIString('Path'),
visible: true,
weight: 20,
+ disclosure: true,
hideable: false,
nonSelectable: false,
alwaysVisible: true,

Powered by Google App Engine
This is Rietveld 408576698