| Index: third_party/WebKit/Source/devtools/front_end/sources/RevisionHistoryView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/RevisionHistoryView.js b/third_party/WebKit/Source/devtools/front_end/sources/RevisionHistoryView.js
|
| index ce05770cafd41f027ea51a22dd52c460687aee99..75ae06607abdd364a07b96f37af1540922d20202 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/RevisionHistoryView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/RevisionHistoryView.js
|
| @@ -35,12 +35,11 @@
|
| WebInspector.RevisionHistoryView = function()
|
| {
|
| WebInspector.VBox.call(this);
|
| - this.registerRequiredCSS("sources/revisionHistory.css");
|
| - this.element.classList.add("revision-history-drawer");
|
| this._uiSourceCodeItems = new Map();
|
|
|
| - this._treeOutline = new TreeOutline();
|
| - this._treeOutline.element.classList.add("outline-disclosure");
|
| + this._treeOutline = new TreeOutlineInShadow();
|
| + this._treeOutline.registerRequiredCSS("sources/revisionHistory.css");
|
| + this._treeOutline.makeDense();
|
| this.element.appendChild(this._treeOutline.element);
|
|
|
| /**
|
|
|