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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sources/NavigatorView.js

Issue 2442543002: DevTools: New snippet button and icon (Closed)
Patch Set: Split css into navigatorView.css and navigatorTree.css Created 4 years, 2 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/sources/NavigatorView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/NavigatorView.js b/third_party/WebKit/Source/devtools/front_end/sources/NavigatorView.js
index 2b58b56eedf70bf609ffcb86efc7f8173806f940..d2c080a7c2e72598f4b83b2b0e8cac527eeb5e64 100644
--- a/third_party/WebKit/Source/devtools/front_end/sources/NavigatorView.js
+++ b/third_party/WebKit/Source/devtools/front_end/sources/NavigatorView.js
@@ -36,7 +36,8 @@ WebInspector.NavigatorView = function()
WebInspector.VBox.call(this);
this._scriptsTree = new TreeOutlineInShadow();
- this._scriptsTree.registerRequiredCSS("sources/navigatorView.css");
+ this.registerRequiredCSS("sources/navigatorView.css");
dgozman 2016/10/20 21:23:10 Let's move this after VBox.call(this).
einbinder 2016/10/20 21:35:21 Done.
+ this._scriptsTree.registerRequiredCSS("sources/navigatorTree.css");
this._scriptsTree.setComparator(WebInspector.NavigatorView._treeElementsCompare);
this.element.appendChild(this._scriptsTree.element);
this.setDefaultFocusedElement(this._scriptsTree.element);

Powered by Google App Engine
This is Rietveld 408576698