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

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

Issue 10928061: About page UI: add confirmation message for release channel switch. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix help.js indentation as suggested by jhawkins. Created 8 years, 3 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="chrome://resources/css/chrome_shared.css"> 6 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.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/load_time_data.js"></script> 10 <script src="chrome://resources/js/load_time_data.js"></script>
(...skipping 19 matching lines...) Expand all
30 </div> 30 </div>
31 <div id="version-container"> 31 <div id="version-container">
32 <div i18n-content="browserVersion" dir="ltr"></div> 32 <div i18n-content="browserVersion" dir="ltr"></div>
33 <if expr="pp_ifdef('chromeos')"> 33 <if expr="pp_ifdef('chromeos')">
34 <div> 34 <div>
35 <span i18n-content="platform"></span>&nbsp;<span id="os-version"></span> 35 <span i18n-content="platform"></span>&nbsp;<span id="os-version"></span>
36 </div> 36 </div>
37 <div> 37 <div>
38 <span i18n-content="firmware"></span>&nbsp;<span id="firmware"></span> 38 <span i18n-content="firmware"></span>&nbsp;<span id="firmware"></span>
39 </div> 39 </div>
40 </if>
41 <if expr="pp_ifdef('chromeos') or pp_ifdef('_google_chrome') or is_linux">
42 <div id="update-status-container" hidden>
43 <div id="update-status-icon" class="up-to-date"></div>
44 <span id="update-status" i18n-content="updateCheckStarted"></span>
45 </div>
46 <div id="update-buttons-container">
47 <div id="update-percentage" hidden></div>
48 <if expr="is_macosx">
49 <button id="promote" i18n-content="promote" hidden></button>
50 </if>
51 <button id="relaunch" i18n-content="relaunch" hidden></button>
52 </div>
53 </if>
54 <if expr="pp_ifdef('chromeos')">
40 <div id="more-info-container"> 55 <div id="more-info-container">
41 <section id="channel-changer-container"> 56 <section id="channel-changer-container">
42 <h3 i18n-content="channel"></h3> 57 <h3 i18n-content="channel"></h3>
43 <select id="channel-changer"> 58 <select id="channel-changer">
44 <option value="stable-channel" i18n-content="stable"></option> 59 <option value="stable-channel" i18n-content="stable"></option>
45 <option value="beta-channel" i18n-content="beta"></option> 60 <option value="beta-channel" i18n-content="beta"></option>
46 <option value="dev-channel" i18n-content="dev"></option> 61 <option value="dev-channel" i18n-content="dev"></option>
47 </select> 62 </select>
63 <div id="channel-change-confirmation" hidden></div>
48 </section> 64 </section>
49 <section> 65 <section>
50 <h3 i18n-content="webkit"></h3> 66 <h3 i18n-content="webkit"></h3>
51 <div i18n-content="webkitVersion" dir="ltr"></div> 67 <div i18n-content="webkitVersion" dir="ltr"></div>
52 </section> 68 </section>
53 <section> 69 <section>
54 <h3 i18n-content="jsEngine" dir="ltr"></h3> 70 <h3 i18n-content="jsEngine" dir="ltr"></h3>
55 <div i18n-content="jsEngineVersion"></div> 71 <div i18n-content="jsEngineVersion"></div>
56 </section> 72 </section>
57 <section> 73 <section>
58 <h3 i18n-content="userAgent"></h3> 74 <h3 i18n-content="userAgent"></h3>
59 <div i18n-content="userAgentInfo" dir="ltr"></div> 75 <div i18n-content="userAgentInfo" dir="ltr"></div>
60 </section> 76 </section>
61 <section> 77 <section>
62 <h3 i18n-content="commandLine"></h3> 78 <h3 i18n-content="commandLine"></h3>
63 <div i18n-content="commandLineInfo" dir="ltr"></div> 79 <div i18n-content="commandLineInfo" dir="ltr"></div>
64 </section> 80 </section>
65 <section id="build-date-container" class="empty"> 81 <section id="build-date-container" class="empty">
66 <h3 i18n-content="buildDate"></h3> 82 <h3 i18n-content="buildDate"></h3>
67 <div id="build-date"></div> 83 <div id="build-date"></div>
68 </section> 84 </section>
69 </div> 85 </div>
70 <button id="more-info-expander" class="link-button" 86 <button id="more-info-expander" class="link-button"
71 i18n-content="showMoreInfo"> 87 i18n-content="showMoreInfo">
72 </button> 88 </button>
73 </if> 89 </if>
74 <if expr="pp_ifdef('chromeos') or pp_ifdef('_google_chrome') or is_linux">
75 <div id="update-status-container" hidden>
76 <div id="update-status-icon" class="up-to-date"></div>
77 <span id="update-status" i18n-content="updateCheckStarted"></span>
78 </div>
79 <div id="update-buttons-container">
80 <div id="update-percentage" hidden></div>
81 <if expr="is_macosx">
82 <button id="promote" i18n-content="promote" hidden></button>
83 </if>
84 <button id="relaunch" i18n-content="relaunch" hidden></button>
85 </div>
86 </if>
87 </div> 90 </div>
88 <div id="product-container"> 91 <div id="product-container">
89 <div i18n-content="productName"></div> 92 <div i18n-content="productName"></div>
90 <div i18n-content="productCopyright"></div> 93 <div i18n-content="productCopyright"></div>
91 <div id="product-license"></div> 94 <div id="product-license"></div>
92 <if expr="pp_ifdef('chromeos')"> 95 <if expr="pp_ifdef('chromeos')">
93 <div id="product-os-license"></div> 96 <div id="product-os-license"></div>
94 </if> 97 </if>
95 <if expr="pp_ifdef('_google_chrome')"> 98 <if expr="pp_ifdef('_google_chrome')">
96 <div id="product-tos"></div> 99 <div id="product-tos"></div>
97 </if> 100 </if>
98 </div> 101 </div>
99 </div> 102 </div>
100 </body> 103 </body>
101 <script src="chrome://help-frame/strings.js"></script> 104 <script src="chrome://help-frame/strings.js"></script>
102 <script src="chrome://resources/js/i18n_template2.js"></script> 105 <script src="chrome://resources/js/i18n_template2.js"></script>
103 </html> 106 </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