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

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

Issue 101013004: Delete the WebUI implementation of the task manager. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix build Created 6 years, 11 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
(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>
OLDNEW
« no previous file with comments | « chrome/browser/resources/task_manager/includes.js ('k') | chrome/browser/resources/task_manager/main.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698