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

Unified Diff: chrome/browser/resources/task_manager/main.html

Issue 7283034: Trivial fix to work WebUI TaskManager correctly on trunk (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Reorder loading orders of Javascripts. Created 9 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/task_manager/main.html
diff --git a/chrome/browser/resources/task_manager/main.html b/chrome/browser/resources/task_manager/main.html
index 9f2535aaefd0a0b8765b7c8f13c8ba4d67fb0739..5583039a9c2420c85855684b923702118aff5436 100644
--- a/chrome/browser/resources/task_manager/main.html
+++ b/chrome/browser/resources/task_manager/main.html
@@ -20,26 +20,24 @@
'util.js',
'cr.js',
- 'cr/locale.js',
- 'cr/ui.js',
'cr/event_target.js',
+
+ 'cr/ui.js',
'cr/ui/array_data_model.js',
'cr/ui/list_item.js',
'cr/ui/list_selection_model.js',
'cr/ui/list_single_selection_model.js',
'cr/ui/list_selection_controller.js',
- 'cr/ui/list.js',
+ 'cr/ui/list.js', // Must be loaded after list_selection_model.js.
+ 'cr/ui/grid.js', // Must be loaded after list_item.js.
'cr/ui/splitter.js',
'cr/ui/table/table_splitter.js',
-
'cr/ui/table/table_column.js',
'cr/ui/table/table_column_model.js',
'cr/ui/table/table_header.js',
'cr/ui/table/table_list.js',
- 'cr/ui/table.js',
-
- 'cr/ui/grid.js',
+ 'cr/ui/table.js', // Must be loaded after table_column_model.js.
];
(function() {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698