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

Unified Diff: Source/devtools/front_end/ui/SidebarPane.js

Issue 363973002: DevTools: bake generic css files into the concatenated one. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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: Source/devtools/front_end/ui/SidebarPane.js
diff --git a/Source/devtools/front_end/ui/SidebarPane.js b/Source/devtools/front_end/ui/SidebarPane.js
index 07baa88ee576cc90a563c08514db6e5ff252a776..411bbf87ef74e27f3a028d7a91b97f8d821eb60b 100644
--- a/Source/devtools/front_end/ui/SidebarPane.js
+++ b/Source/devtools/front_end/ui/SidebarPane.js
@@ -159,7 +159,6 @@ WebInspector.SidebarPaneStack = function()
WebInspector.View.call(this);
this.setMinimumSize(25, 0);
this.element.className = "sidebar-pane-stack"; // Override
- this.registerRequiredCSS("sidebarPane.css");
}
WebInspector.SidebarPaneStack.prototype = {
@@ -183,7 +182,6 @@ WebInspector.SidebarTabbedPane = function()
WebInspector.TabbedPane.call(this);
this.setRetainTabOrder(true);
this.element.classList.add("sidebar-tabbed-pane");
- this.registerRequiredCSS("sidebarPane.css");
}
WebInspector.SidebarTabbedPane.prototype = {

Powered by Google App Engine
This is Rietveld 408576698