| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE HTML> | |
| 2 <!-- | |
| 3 -- Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 4 -- Use of this source code is governed by a BSD-style license that can be | |
| 5 -- found in the LICENSE file. | |
| 6 --> | |
| 7 <html i18n-values="dir:textdirection;"> | |
| 8 <head> | |
| 9 <meta charset="utf-8"> | |
| 10 <title i18n-content="title"></title> | |
| 11 <script src="measure_time.js"></script> | |
| 12 | |
| 13 <script src="commands.js"></script> | |
| 14 <script src="defines.js"></script> | |
| 15 <script src="preload.js"></script> | |
| 16 <script src="includes.js"></script> | |
| 17 <script src="main.js"></script> | |
| 18 <script src="chrome://tasks/strings.js"></script> | |
| 19 | |
| 20 <!-- For accurate load performance tracking | |
| 21 place all scripts above this line --> | |
| 22 <script src="measure_time_end.js"></script> | |
| 23 | |
| 24 <link rel="stylesheet" href="task_manager.css"> | |
| 25 </head> | |
| 26 <body> | |
| 27 <div class="dialog-body"> | |
| 28 <div class="list-container"> | |
| 29 <div class="detail-table"></div> | |
| 30 </div> | |
| 31 </div> | |
| 32 <div class="dialog-footer"> | |
| 33 <div class="footer-left-container"> | |
| 34 <a href="#" id="about-memory-link" i18n-content="aboutMemoryLink"></a> | |
| 35 </div> | |
| 36 <div class="footer-right-container"> | |
| 37 <button id="kill-process" i18n-content="killButton" disabled></button> | |
| 38 <if expr="pp_ifdef('chromeos')"> | |
| 39 <button id="close-window" i18n-content="closeWindow"></button> | |
| 40 </if> | |
| 41 </div> | |
| 42 </div> | |
| 43 </body> | |
| 44 </html> | |
| OLD | NEW |