Chromium Code Reviews| Index: third_party/WebKit/Source/devtools/front_end/network/NetworkLogView.js |
| diff --git a/third_party/WebKit/Source/devtools/front_end/network/NetworkLogView.js b/third_party/WebKit/Source/devtools/front_end/network/NetworkLogView.js |
| index 5bc99b050220a40801cca246f2caa5fcc9865a17..a7f4b9c1f4c056116b64419a03e3df76bdf74056 100644 |
| --- a/third_party/WebKit/Source/devtools/front_end/network/NetworkLogView.js |
| +++ b/third_party/WebKit/Source/devtools/front_end/network/NetworkLogView.js |
| @@ -312,6 +312,7 @@ WebInspector.NetworkLogView.prototype = { |
| this._dataGrid.element.addEventListener("mousedown", this._dataGridMouseDown.bind(this), true); |
| this._dataGrid.element.addEventListener("mousemove", this._dataGridMouseMove.bind(this), true); |
| this._dataGrid.element.addEventListener("mouseleave", this._highlightInitiatorChain.bind(this, null), true); |
| + this._columns.sort(); |
|
dgozman
2016/07/15 23:47:49
Why sort?
allada
2016/07/25 23:05:53
This is sorting the data not the columns themselve
|
| }, |
| /** |