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

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

Issue 714423005: DevTools: move front-end files from components to ui. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 1 month 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/FlameChart.js
diff --git a/Source/devtools/front_end/components/FlameChart.js b/Source/devtools/front_end/ui/FlameChart.js
similarity index 99%
rename from Source/devtools/front_end/components/FlameChart.js
rename to Source/devtools/front_end/ui/FlameChart.js
index 15cd67d576ee0de431f622e800e0ec4aa246bd05..884506cecfe268a106bf25964fc1fec592769062 100644
--- a/Source/devtools/front_end/components/FlameChart.js
+++ b/Source/devtools/front_end/ui/FlameChart.js
@@ -57,7 +57,7 @@ WebInspector.FlameChartDelegate.prototype = {
WebInspector.FlameChart = function(dataProvider, flameChartDelegate, isTopDown)
{
WebInspector.HBox.call(this, true);
- this.contentElement.appendChild(WebInspector.View.createStyleElement("components/flameChart.css"));
+ this.contentElement.appendChild(WebInspector.View.createStyleElement("ui/flameChart.css"));
this.contentElement.classList.add("flame-chart-main-pane");
this._flameChartDelegate = flameChartDelegate;
this._isTopDown = isTopDown;

Powered by Google App Engine
This is Rietveld 408576698