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

Side by Side Diff: chrome/browser/resources/task_manager/main.html

Issue 7326044: WebUI TaskManager: Column Customization (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 5 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 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <!-- 2 <!--
3 -- Copyright (c) 2011 The Chromium Authors. All rights reserved. 3 -- Copyright (c) 2011 The Chromium Authors. All rights reserved.
4 -- Use of this source code is governed by a BSD-style license that can be 4 -- Use of this source code is governed by a BSD-style license that can be
5 -- found in the LICENSE file. 5 -- found in the LICENSE file.
6 --> 6 -->
7 <html i18n-values="dir:textdirection;"> 7 <html i18n-values="dir:textdirection;">
8 <head> 8 <head>
9 <meta charset="utf-8"> 9 <meta charset="utf-8">
10 <title i18n-content="title"></title> 10 <title i18n-content="title"></title>
11 <script> 11 <script>
12 var css = [ 12 var css = [
13 'list.css', 13 'list.css',
14 'table.css' 14 'table.css',
15 'menu.css',
15 ]; 16 ];
16 17
17 var script = [ 18 var script = [
18 'local_strings.js', 19 'local_strings.js',
19 'i18n_template.js', 20 'i18n_template.js',
20 21
21 'util.js', 22 'util.js',
22 'cr.js', 23 'cr.js',
23 'cr/ui.js', 24 'cr/ui.js',
24 'cr/event_target.js', 25 'cr/event_target.js',
25 'cr/ui/array_data_model.js', 26 'cr/ui/array_data_model.js',
26 'cr/ui/list_item.js', 27 'cr/ui/list_item.js',
27 'cr/ui/list_selection_model.js', 28 'cr/ui/list_selection_model.js',
28 'cr/ui/list_single_selection_model.js', 29 'cr/ui/list_single_selection_model.js',
29 'cr/ui/list_selection_controller.js', 30 'cr/ui/list_selection_controller.js',
30 'cr/ui/list.js', 31 'cr/ui/list.js',
31 32
32 'cr/ui/splitter.js', 33 'cr/ui/splitter.js',
33 'cr/ui/table/table_splitter.js', 34 'cr/ui/table/table_splitter.js',
34 35
35 'cr/ui/table/table_column.js', 36 'cr/ui/table/table_column.js',
36 'cr/ui/table/table_column_model.js', 37 'cr/ui/table/table_column_model.js',
37 'cr/ui/table/table_header.js', 38 'cr/ui/table/table_header.js',
38 'cr/ui/table/table_list.js', 39 'cr/ui/table/table_list.js',
39 'cr/ui/table.js', 40 'cr/ui/table.js',
40 41
41 'cr/ui/grid.js', 42 'cr/ui/grid.js',
43
44 'cr/ui/command.js',
45 'cr/ui/position_util.js',
46 'cr/ui/menu_item.js',
47 'cr/ui/menu.js',
48 'cr/ui/context_menu_handler.js',
42 ]; 49 ];
43 50
44 (function() { 51 (function() {
45 // Switch to 'test harness' mode when loading from a file url. 52 // Switch to 'test harness' mode when loading from a file url.
46 var isHarness = document.location.protocol == 'file:'; 53 var isHarness = document.location.protocol == 'file:';
47 54
48 // In test harness mode we load resources from relative dirs. 55 // In test harness mode we load resources from relative dirs.
49 var prefix = isHarness ? './shared/' : 'chrome://resources/'; 56 var prefix = isHarness ? './shared/' : 'chrome://resources/';
50 57
51 for (var i = 0; i < css.length; ++i) { 58 for (var i = 0; i < css.length; ++i) {
(...skipping 24 matching lines...) Expand all
76 <a href="#" id="about-memory-link" i18n-content="about_memory_link"></a> 83 <a href="#" id="about-memory-link" i18n-content="about_memory_link"></a>
77 </div> 84 </div>
78 <div class="footer-right-container"> 85 <div class="footer-right-container">
79 <button id="kill-process" i18n-content="kill_process"></button> 86 <button id="kill-process" i18n-content="kill_process"></button>
80 <button id="close-window" i18n-content="close_window"></button> 87 <button id="close-window" i18n-content="close_window"></button>
81 </div> 88 </div>
82 </div> 89 </div>
83 </body> 90 </body>
84 </html> 91 </html>
85 92
OLDNEW
« no previous file with comments | « chrome/browser/resources/shared_resources.grd ('k') | chrome/browser/resources/task_manager/main.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698