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

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

Issue 8993007: WebUI TaskManager: Delay scripts loading. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: marge with master Created 8 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
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
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