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

Side by Side Diff: chrome/browser/resources/help/help.html

Issue 9413028: Help: Show the platform version and firmware on CrOS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review fixes. Created 8 years, 10 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
« no previous file with comments | « chrome/browser/resources/help/help.css ('k') | chrome/browser/resources/help/help.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 <html i18n-values="dir:textdirection;"> 2 <html i18n-values="dir:textdirection;">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title i18n-content="helpTitle"></title> 5 <title i18n-content="helpTitle"></title>
6 <link rel="stylesheet" href="../shared/css/button.css"> 6 <link rel="stylesheet" href="../shared/css/button.css">
7 <link rel="stylesheet" href="../shared/css/chrome_shared2.css"> 7 <link rel="stylesheet" href="../shared/css/chrome_shared2.css">
8 <link rel="stylesheet" href="../uber/uber_shared.css"> 8 <link rel="stylesheet" href="../uber/uber_shared.css">
9 <link rel="stylesheet" href="help.css"> 9 <link rel="stylesheet" href="help.css">
10 <script src="chrome://resources/js/cr.js"></script> 10 <script src="chrome://resources/js/cr.js"></script>
11 <script src="chrome://resources/js/local_strings.js"></script> 11 <script src="chrome://resources/js/local_strings.js"></script>
12 <script src="chrome://resources/js/util.js"></script> 12 <script src="chrome://resources/js/util.js"></script>
13 <script src="chrome://help-frame/help.js"></script> 13 <script src="chrome://help-frame/help.js"></script>
14 </head> 14 </head>
15 <body class="uber-frame" 15 <body class="uber-frame"
16 i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 16 i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
17 <div class="page"> 17 <div class="page">
18 <header> 18 <header>
19 <h1 i18n-content="helpTitle"></h1> 19 <h1 i18n-content="helpTitle"></h1>
20 </header> 20 </header>
21 <div id="about-container"> 21 <div id="about-container">
22 <img src="chrome://theme/IDR_PRODUCT_LOGO_32"> 22 <img src="chrome://theme/IDR_PRODUCT_LOGO_32">
23 <div id="product-description"> 23 <div id="product-description">
24 <h2 i18n-content="aboutProductTitle"></h2> 24 <h2 i18n-content="aboutProductTitle"></h2>
25 <span i18n-content="aboutProductDescription"></span> 25 <span i18n-content="aboutProductDescription"></span>
26 </div> 26 </div>
27 </div> 27 </div>
28 <div id="version-container"> 28 <div id="version-container">
29 <div id="browser-version" i18n-content="browserVersion"></div> 29 <div i18n-content="browserVersion"></div>
30 <if expr="pp_ifdef('chromeos')">
31 <div>
32 <span i18n-content="platform"></span>&nbsp;<span id="os-version"></span>
33 </div>
34 <div>
35 <span i18n-content="firmware"></span>&nbsp;<span id="firmware"></span>
36 </div>
37 </if>
30 <if expr="pp_ifdef('win32') or pp_ifdef('darwin') or pp_ifdef('chromeos')"> 38 <if expr="pp_ifdef('win32') or pp_ifdef('darwin') or pp_ifdef('chromeos')">
31 <div id="update-status-container"> 39 <div id="update-status-container">
32 <img id="update-status-icon" class="up-to-date"></img> 40 <img id="update-status-icon" class="up-to-date"></img>
33 <span id="update-status" i18n-content="updateCheckStarted"></span> 41 <span id="update-status" i18n-content="updateCheckStarted"></span>
34 </div> 42 </div>
35 <div id="update-percentage" hidden></div> 43 <div id="update-percentage" hidden></div>
36 <button id="relaunch" i18n-content="relaunch" hidden></button> 44 <button id="relaunch" i18n-content="relaunch" hidden></button>
37 </if> 45 </if>
38 </div> 46 </div>
39 <if expr="pp_ifdef('_google_chrome')"> 47 <if expr="pp_ifdef('_google_chrome')">
40 <div id="help-container"> 48 <div id="help-container">
41 <button id="get-help" i18n-content="getHelpWithChrome"></button> 49 <button id="get-help" i18n-content="getHelpWithChrome"></button>
42 <button i18n-content="reportAProblem"></button> 50 <button i18n-content="reportAProblem"></button>
43 </div> 51 </div>
44 </if> 52 </if>
45 <div id="product-container"> 53 <div id="product-container">
46 <div i18n-content="productName"></div> 54 <div i18n-content="productName"></div>
47 <div i18n-content="productCopyright"></div> 55 <div i18n-content="productCopyright"></div>
48 <div id="product-license"></div> 56 <div id="product-license"></div>
49 <if expr="pp_ifdef('_google_chrome')"> 57 <if expr="pp_ifdef('_google_chrome')">
50 <div id="product-tos"></div> 58 <div id="product-tos"></div>
51 </if> 59 </if>
52 </div> 60 </div>
53 </div> 61 </div>
54 </body> 62 </body>
55 <script src="chrome://help-frame/strings.js"></script> 63 <script src="chrome://help-frame/strings.js"></script>
56 <script src="chrome://resources/js/i18n_template.js"></script> 64 <script src="chrome://resources/js/i18n_template.js"></script>
57 <script src="chrome://resources/js/i18n_process.js"></script> 65 <script src="chrome://resources/js/i18n_process.js"></script>
58 </html> 66 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/help/help.css ('k') | chrome/browser/resources/help/help.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698