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

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

Issue 8505004: TaskManager: Fix to make format of i18n-content values to be of JavaScriptCase (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fixed merge conflicts Created 9 years, 1 month 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
« no previous file with comments | « no previous file | chrome/browser/resources/task_manager/main.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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="chrome://tasks/includes.js"></script>
12 <script src="chrome://tasks/main.js"></script> 12 <script src="chrome://tasks/main.js"></script>
13 <script src="chrome://tasks/strings.js"></script> 13 <script src="chrome://tasks/strings.js"></script>
14 <link rel="stylesheet" href="task_manager.css"> 14 <link rel="stylesheet" href="task_manager.css">
15 </head> 15 </head>
16 <body> 16 <body>
17 <div class="dialog-title" i18n-content="TITLE" 17 <div class="dialog-title" i18n-content="title"
18 visibleif='this.opt_.isShowTitle'></div> 18 visibleif='this.opt_.isShowTitle'></div>
19 <div class="dialog-body"> 19 <div class="dialog-body">
20 <div class="list-container"> 20 <div class="list-container">
21 <div class="detail-table"></div> 21 <div class="detail-table"></div>
22 </div> 22 </div>
23 </div> 23 </div>
24 <div class="dialog-footer"> 24 <div class="dialog-footer">
25 <div class="footer-left-container"> 25 <div class="footer-left-container">
26 <a href="#" id="about-memory-link" i18n-content="ABOUT_MEMORY_LINK"></a> 26 <a href="#" id="about-memory-link" i18n-content="aboutMemoryLink"></a>
27 </div> 27 </div>
28 <div class="footer-right-container"> 28 <div class="footer-right-container">
29 <button id="kill-process" 29 <button id="kill-process"
30 i18n-content="KILL_CHROMEOS" disabled></button> 30 i18n-content="killChromeOS" disabled></button>
31 <button id="close-window" i18n-content="CLOSE_WINDOW" 31 <button id="close-window" i18n-content="closeWindow"
32 visibleif='this.opt_.isShowCloseButton'></button> 32 visibleif='this.opt_.isShowCloseButton'></button>
33 </div> 33 </div>
34 </div> 34 </div>
35 <script src="chrome://resources/js/i18n_template.js"></script> 35 <script src="chrome://resources/js/i18n_template.js"></script>
36 <script src="chrome://resources/js/i18n_process.js"></script> 36 <script src="chrome://resources/js/i18n_process.js"></script>
37 </body> 37 </body>
38 </html> 38 </html>
39 39
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/task_manager/main.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698