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

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

Issue 9609023: css hack n' slash, continued: New styles for checkboxes and radios. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: csilv review Created 8 years, 9 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
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_shared.css', 10 'chrome_shared.css',
11 'list.css', 11 'list.css',
12 'table.css', 12 'table.css',
13 'menu.css', 13 'menu.css',
14 'button.css', 14 'widgets.css',
15 ]; 15 ];
16 16
17 var script = [ 17 var script = [
18 'local_strings.js', 18 'local_strings.js',
19 'i18n_template.js', 19 'i18n_template.js',
20 20
21 'event_tracker.js', 21 'event_tracker.js',
22 'util.js', 22 'util.js',
23 'cr.js', 23 'cr.js',
24 'cr/ui.js', 24 'cr/ui.js',
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 var s = document.createElement('script'); 83 var s = document.createElement('script');
84 s.onload = function(e) { 84 s.onload = function(e) {
85 if (!--remain) 85 if (!--remain)
86 taskmanager.delayedInitialize(); 86 taskmanager.delayedInitialize();
87 }; 87 };
88 s.src = prefix + 'js/' + scriptDelayed[i]; 88 s.src = prefix + 'js/' + scriptDelayed[i];
89 document.head.appendChild(s); 89 document.head.appendChild(s);
90 } 90 }
91 }; 91 };
92 })(); 92 })();
OLDNEW
« no previous file with comments | « chrome/browser/resources/sync_promo/sync_promo.html ('k') | chrome/browser/resources/tracing.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698