summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/task_manager/main.html
blob: e9bb32bfe13b68b2b2248385551f29aa8835703a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!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">
    <include src="../content_security_policy.html"/>
    <title i18n-content="TITLE"></title>
    <script src="chrome://tasks/includes.js"></script>
    <script src="chrome://tasks/main.js"></script>
    <script src="chrome://tasks/strings.js"></script>
    <link rel="stylesheet" href="task_manager.css">
  </head>
  <body>
    <div class="dialog-title" i18n-content="TITLE"
         visibleif='this.opt_.isShowTitle'></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_CHROMEOS"></button>
        <button id="close-window" i18n-content="CLOSE_WINDOW"
                visibleif='this.opt_.isShowCloseButton'></button>
      </div>
    </div>
    <script src="chrome://resources/js/i18n_template.js"></script>
    <script src="chrome://resources/js/i18n_process.js"></script>
  </body>
</html>