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

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

Issue 10408007: retry 137554 - convert help page to loadTimeData (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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 | « no previous file | 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="chrome://resources/css/chrome_shared2.css"> 6 <link rel="stylesheet" href="chrome://resources/css/chrome_shared2.css">
7 <link rel="stylesheet" href="../uber/uber_shared.css"> 7 <link rel="stylesheet" href="../uber/uber_shared.css">
8 <link rel="stylesheet" href="help.css"> 8 <link rel="stylesheet" href="help.css">
9 <script src="chrome://resources/js/cr.js"></script> 9 <script src="chrome://resources/js/cr.js"></script>
10 <script src="chrome://resources/js/local_strings.js"></script> 10 <script src="chrome://resources/js/load_time_data.js"></script>
11 <script src="chrome://resources/js/util.js"></script> 11 <script src="chrome://resources/js/util.js"></script>
12 <script src="chrome://help-frame/help.js"></script> 12 <script src="chrome://help-frame/help.js"></script>
13 </head> 13 </head>
14 <body class="uber-frame" 14 <body class="uber-frame"
15 i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 15 i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
16 <div class="page"> 16 <div class="page">
17 <header> 17 <header>
18 <h1 i18n-content="aboutTitle"></h1> 18 <h1 i18n-content="aboutTitle"></h1>
19 </header> 19 </header>
20 <div id="about-container"> 20 <div id="about-container">
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 i18n-content="showMoreInfo"> 71 i18n-content="showMoreInfo">
72 </button> 72 </button>
73 </if> 73 </if>
74 <if expr="pp_ifdef('chromeos') or (pp_ifdef('_google_chrome') and (is_win or is_ macosx))"> 74 <if expr="pp_ifdef('chromeos') or (pp_ifdef('_google_chrome') and (is_win or is_ macosx))">
75 <div id="update-status-container"> 75 <div id="update-status-container">
76 <div id="update-status-icon" class="up-to-date"></div> 76 <div id="update-status-icon" class="up-to-date"></div>
77 <span id="update-status" i18n-content="updateCheckStarted"></span> 77 <span id="update-status" i18n-content="updateCheckStarted"></span>
78 </div> 78 </div>
79 <div id="update-buttons-container"> 79 <div id="update-buttons-container">
80 <div id="update-percentage" hidden></div> 80 <div id="update-percentage" hidden></div>
81 <if expr="is_macosx">
Evan Stade 2012/05/17 03:52:18 this is the difference
81 <button id="promote" i18n-content="promote" hidden></button> 82 <button id="promote" i18n-content="promote" hidden></button>
83 </if>
82 <button id="relaunch" i18n-content="relaunch" hidden></button> 84 <button id="relaunch" i18n-content="relaunch" hidden></button>
83 </div> 85 </div>
84 </if> 86 </if>
85 </div> 87 </div>
86 <div id="product-container"> 88 <div id="product-container">
87 <div i18n-content="productName"></div> 89 <div i18n-content="productName"></div>
88 <div i18n-content="productCopyright"></div> 90 <div i18n-content="productCopyright"></div>
89 <div id="product-license"></div> 91 <div id="product-license"></div>
90 <if expr="pp_ifdef('chromeos')"> 92 <if expr="pp_ifdef('chromeos')">
91 <div id="product-os-license"></div> 93 <div id="product-os-license"></div>
92 </if> 94 </if>
93 <if expr="pp_ifdef('_google_chrome')"> 95 <if expr="pp_ifdef('_google_chrome')">
94 <div id="product-tos"></div> 96 <div id="product-tos"></div>
95 </if> 97 </if>
96 </div> 98 </div>
97 </div> 99 </div>
98 </body> 100 </body>
99 <script src="chrome://help-frame/strings.js"></script> 101 <script src="chrome://help-frame/strings.js"></script>
100 <script src="chrome://resources/js/i18n_template.js"></script> 102 <script src="chrome://resources/js/i18n_template2.js"></script>
101 <script src="chrome://resources/js/i18n_process.js"></script>
102 </html> 103 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/help/help.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698