OLD | NEW |
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 src="chrome://tasks/includes.js"></script> | 11 <script src="measure_time.js"></script> |
12 <script src="chrome://tasks/main.js"></script> | 12 |
| 13 <script src="includes.js"></script> |
| 14 <script src="main.js"></script> |
13 <script src="chrome://tasks/strings.js"></script> | 15 <script src="chrome://tasks/strings.js"></script> |
| 16 |
| 17 <!-- For accurate load performance tracking |
| 18 place all scripts above this line --> |
| 19 <script> |
| 20 measureTime.recordInterval('Load.Script'); |
| 21 </script> |
| 22 |
14 <link rel="stylesheet" href="task_manager.css"> | 23 <link rel="stylesheet" href="task_manager.css"> |
15 </head> | 24 </head> |
16 <body> | 25 <body> |
17 <div class="dialog-title" i18n-content="title" | 26 <if expr="pp_ifdef('chromeos')"> |
18 visibleif='this.opt_.isShowTitle'></div> | 27 <div class="dialog-title" id="dialog-title" i18n-content="title"></div> |
| 28 </if> |
19 <div class="dialog-body"> | 29 <div class="dialog-body"> |
20 <div class="list-container"> | 30 <div class="list-container"> |
21 <div class="detail-table"></div> | 31 <div class="detail-table"></div> |
22 </div> | 32 </div> |
23 </div> | 33 </div> |
24 <div class="dialog-footer"> | 34 <div class="dialog-footer"> |
25 <div class="footer-left-container"> | 35 <div class="footer-left-container"> |
26 <a href="#" id="about-memory-link" i18n-content="aboutMemoryLink"></a> | 36 <a href="#" id="about-memory-link" i18n-content="aboutMemoryLink"></a> |
27 </div> | 37 </div> |
28 <div class="footer-right-container"> | 38 <div class="footer-right-container"> |
29 <button id="kill-process" | 39 <button id="kill-process" |
30 i18n-content="killChromeOS" disabled></button> | 40 i18n-content="killChromeOS" disabled></button> |
31 <button id="close-window" i18n-content="closeWindow" | 41 <if expr="pp_ifdef('chromeos')"> |
32 visibleif='this.opt_.isShowCloseButton'></button> | 42 <button id="close-window" i18n-content="closeWindow"></button> |
| 43 </if> |
33 </div> | 44 </div> |
34 </div> | 45 </div> |
35 <script src="chrome://resources/js/i18n_template.js"></script> | |
36 <script src="chrome://resources/js/i18n_process.js"></script> | |
37 </body> | 46 </body> |
38 </html> | 47 </html> |
39 | |
OLD | NEW |