| 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,
|
|
|