| <!DOCTYPE HTML> |
| <!-- |
| -- Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| -- Use of this source code is governed by a BSD-style license that can be |
| -- found in the LICENSE file. |
| --> |
| <html i18n-values="dir:textdirection;"> |
| <head> |
| <meta charset="utf-8"> |
| <title i18n-content="title"></title> |
| <script> |
| var css = [ |
| 'list.css', |
| 'table.css' |
| ]; |
| |
| var script = [ |
| 'local_strings.js', |
| 'i18n_template.js', |
| |
| 'util.js', |
| 'cr.js', |
| 'cr/locale.js', |
| 'cr/ui.js', |
| 'cr/event_target.js', |
| 'cr/ui/array_data_model.js', |
| 'cr/ui/list_item.js', |
| 'cr/ui/list_selection_model.js', |
| 'cr/ui/list_single_selection_model.js', |
| 'cr/ui/list_selection_controller.js', |
| 'cr/ui/list.js', |
| |
| 'cr/ui/splitter.js', |
| 'cr/ui/table/table_splitter.js', |
| |
| 'cr/ui/table/table_column.js', |
| 'cr/ui/table/table_column_model.js', |
| 'cr/ui/table/table_header.js', |
| 'cr/ui/table/table_list.js', |
| 'cr/ui/table.js', |
| |
| 'cr/ui/grid.js', |
| ]; |
| |
| (function() { |
| // Switch to 'test harness' mode when loading from a file url. |
| var isHarness = document.location.protocol == 'file:'; |
| |
| // In test harness mode we load resources from relative dirs. |
| var prefix = isHarness ? './shared/' : 'chrome://resources/'; |
| |
| for (var i = 0; i < css.length; ++i) { |
| document.write('<link href="' + prefix + 'css/' + css[i] + |
| '" rel="stylesheet"></link>'); |
| } |
| |
| for (var i = 0; i < script.length; ++i) { |
| document.write('<script src="' + prefix + 'js/' + script[i] + |
| '"><\57script>'); |
| } |
| |
| })(); |
| </script> |
| |
| <link rel="stylesheet" href="task_manager.css"> |
| <script src="main.js"></script> |
| </head> |
| <body> |
| <div class="dialog-title" i18n-content="title"></div> |
| <div class="dialog-body"> |
| <div class="list-container"> |
| <div class="detail-table"></div> |
| </div> |
| </div> |
| <div class="dialog-footer"> |
| <div class="footer-left-container"> |
| <a href="#" id="about-memory-link" i18n-content="about_memory_link"></a> |
| </div> |
| <div class="footer-right-container"> |
| <button id="kill-process" i18n-content="kill_process"></button> |
| <button id="close-window" i18n-content="close_window"></button> |
| </div> |
| </div> |
| </body> |
| </html> |
| |