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

Side by Side Diff: chrome/browser/resources/task_manager/includes.js

Issue 10444043: rename chrome_shared2.css to chrome_shared.css (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/resources/shared_resources.grd ('k') | chrome/browser/resources/uber/uber.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This script includes additional resources via document.write(). Hence, it 5 // This script includes additional resources via document.write(). Hence, it
6 // must be a separate script file loaded before other scripts which would 6 // must be a separate script file loaded before other scripts which would
7 // reference the resources. 7 // reference the resources.
8 8
9 var css = [ 9 var css = [
10 'chrome_shared2.css', 10 'chrome_shared.css',
11 'list.css', 11 'list.css',
12 'table.css', 12 'table.css',
13 'menu.css', 13 'menu.css',
14 'widgets.css',
15 ]; 14 ];
16 15
17 var script = [ 16 var script = [
18 'load_time_data.js', 17 'load_time_data.js',
19 'i18n_template_no_process.js', 18 'i18n_template_no_process.js',
20 19
21 'event_tracker.js', 20 'event_tracker.js',
22 'util.js', 21 'util.js',
23 'cr.js', 22 'cr.js',
24 'cr/ui.js', 23 'cr/ui.js',
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 var s = document.createElement('script'); 82 var s = document.createElement('script');
84 s.onload = function(e) { 83 s.onload = function(e) {
85 if (!--remain) 84 if (!--remain)
86 taskmanager.delayedInitialize(); 85 taskmanager.delayedInitialize();
87 }; 86 };
88 s.src = prefix + 'js/' + scriptDelayed[i]; 87 s.src = prefix + 'js/' + scriptDelayed[i];
89 document.head.appendChild(s); 88 document.head.appendChild(s);
90 } 89 }
91 }; 90 };
92 })(); 91 })();
OLDNEW
« no previous file with comments | « chrome/browser/resources/shared_resources.grd ('k') | chrome/browser/resources/uber/uber.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698