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

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

Issue 17437004: Implemented new channel switcher UI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix, sync. Created 7 years, 6 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 <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/bubble.css">
Nikita (slow) 2013/06/21 12:21:33 As discussed, please move all new links to css/js
ygorshenin1 2013/06/21 17:24:58 Done.
6 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> 7 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
8 <link rel="stylesheet" href="chrome://resources/css/overlay.css">
7 <link rel="stylesheet" href="../uber/uber_shared.css"> 9 <link rel="stylesheet" href="../uber/uber_shared.css">
8 <link rel="stylesheet" href="help.css"> 10 <link rel="stylesheet" href="help.css">
11 <if expr="pp_ifdef('chromeos')">
12 <link rel="stylesheet" href="channel_change_page.css">
13 </if>
14
9 <script src="chrome://resources/js/cr.js"></script> 15 <script src="chrome://resources/js/cr.js"></script>
16 <script src="chrome://resources/js/cr/ui.js"></script>
17 <script src="chrome://resources/js/cr/ui/bubble.js"></script>
18 <script src="chrome://resources/js/cr/ui/overlay.js"></script>
19 <script src="chrome://resources/js/event_tracker.js"></script>
10 <script src="chrome://resources/js/load_time_data.js"></script> 20 <script src="chrome://resources/js/load_time_data.js"></script>
11 <script src="chrome://resources/js/util.js"></script> 21 <script src="chrome://resources/js/util.js"></script>
22 <if expr="pp_ifdef('chromeos')">
23 <script src="chrome://help-frame/channel_change_page.js"></script>
24 </if>
12 <script src="chrome://help-frame/help.js"></script> 25 <script src="chrome://help-frame/help.js"></script>
13 </head> 26 </head>
14 <body class="uber-frame" 27 <body class="uber-frame"
15 i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 28 i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
29 <div id="overlay-container" class="overlay" hidden>
30 <include src="channel_change_page.html">
31 </div>
16 <div class="page"> 32 <div class="page">
17 <header> 33 <header>
18 <h1 i18n-content="aboutTitle"></h1> 34 <h1 i18n-content="aboutTitle"></h1>
19 </header> 35 </header>
20 <div id="about-container"> 36 <div id="about-container">
21 <img src="chrome://theme/IDR_PRODUCT_LOGO_32"> 37 <img src="chrome://theme/IDR_PRODUCT_LOGO_32">
22 <div id="product-description"> 38 <div id="product-description">
23 <h2 i18n-content="aboutProductTitle"></h2> 39 <h2 i18n-content="aboutProductTitle"></h2>
24 <span i18n-content="aboutProductDescription"></span> 40 <span i18n-content="aboutProductDescription"></span>
25 </div> 41 </div>
26 </div> 42 </div>
27 <div id="help-container"> 43 <div id="help-container">
28 <button id="get-help" i18n-content="getHelpWithChrome"></button> 44 <button id="get-help" i18n-content="getHelpWithChrome"></button>
29 <button id="report-issue" i18n-content="reportAnIssue"></button> 45 <button id="report-issue" i18n-content="reportAnIssue"></button>
30 </div> 46 </div>
31 <div id="version-container"> 47 <div id="version-container">
32 <div i18n-content="browserVersion" dir="ltr"></div> 48 <div i18n-content="browserVersion" dir="ltr"></div>
33 <if expr="pp_ifdef('chromeos')"> 49 <if expr="pp_ifdef('chromeos')">
34 <div> 50 <div>
35 <span i18n-content="platform"></span>&nbsp;<span id="os-version"></span> 51 <span i18n-content="platform"></span>&nbsp;<span id="os-version"></span>
36 </div> 52 </div>
37 <div> 53 <div>
38 <span i18n-content="firmware"></span>&nbsp;<span id="firmware"></span> 54 <span i18n-content="firmware"></span>&nbsp;<span id="firmware"></span>
39 </div> 55 </div>
40 </if> 56 </if>
41 <if expr="pp_ifdef('chromeos') or pp_ifdef('_google_chrome') or is_linux"> 57 <if expr="pp_ifdef('chromeos') or pp_ifdef('_google_chrome') or is_linux">
42 <div id="update-status-container" hidden> 58 <div id="update-status-container" hidden>
43 <div id="update-status-icon" class="up-to-date"></div> 59 <div id="update-status-icon" class="help-page-icon up-to-date"></div>
44 <div id="update-status-message-container"> 60 <div id="update-status-message-container">
45 <div id="update-status-message" i18n-content="updateCheckStarted"> 61 <div id="update-status-message" i18n-content="updateCheckStarted">
46 </div> 62 </div>
47 <div id="allowed-connection-types-message" hidden></div> 63 <div id="allowed-connection-types-message" hidden></div>
48 </div> 64 </div>
49 </div> 65 </div>
50 <div id="update-buttons-container"> 66 <div id="update-buttons-container">
51 <div id="update-percentage" hidden></div> 67 <div id="update-percentage" hidden></div>
52 <if expr="is_macosx"> 68 <if expr="is_macosx">
53 <button id="promote" i18n-content="promote" hidden></button> 69 <button id="promote" i18n-content="promote" hidden></button>
54 </if> 70 </if>
55 <button id="relaunch" i18n-content="relaunch" hidden></button> 71 <button id="relaunch" i18n-content="relaunch" hidden></button>
72 <button id="relaunch-and-powerwash"
73 i18n-content="relaunchAndPowerwash" hidden>
74 </button>
56 </div> 75 </div>
57 </if> 76 </if>
58 <if expr="pp_ifdef('chromeos')"> 77 <if expr="pp_ifdef('chromeos')">
59 <div id="more-info-container"> 78 <div id="more-info-container">
60 <section id="channel-changer-container"> 79 <section id="channel-changer-container" hidden>
61 <h3 i18n-content="channel"></h3> 80 <h3 i18n-content="channel"></h3>
62 <select id="channel-changer"> 81 <select id="channel-changer">
63 <option value="stable-channel" i18n-content="stable"></option> 82 <option value="stable-channel" i18n-content="stable"></option>
64 <option value="beta-channel" i18n-content="beta"></option> 83 <option value="beta-channel" i18n-content="beta"></option>
65 <option value="dev-channel" i18n-content="dev"></option> 84 <option value="dev-channel" i18n-content="dev"></option>
66 </select> 85 </select>
67 <div id="channel-change-confirmation" hidden></div> 86 <div id="channel-change-confirmation" hidden></div>
68 </section> 87 </section>
88 <section id="channel-change-page-container" hidden>
89 <h3 i18n-content="channel"></h3>
90 <div id="current-channel"></div>
91 <button id="change-channel"
92 i18n-content="channelChangeButton" disabled>
93 </button>
94 <div id="channel-change-disallowed-icon"
95 class="help-page-icon" hidden>
96 </div>
97 </section>
69 <section> 98 <section>
70 <h3 i18n-content="webkit"></h3> 99 <h3 i18n-content="webkit"></h3>
71 <div i18n-content="webkitVersion" dir="ltr"></div> 100 <div i18n-content="webkitVersion" dir="ltr"></div>
72 </section> 101 </section>
73 <section> 102 <section>
74 <h3 i18n-content="jsEngine" dir="ltr"></h3> 103 <h3 i18n-content="jsEngine" dir="ltr"></h3>
75 <div i18n-content="jsEngineVersion"></div> 104 <div i18n-content="jsEngineVersion"></div>
76 </section> 105 </section>
77 <section> 106 <section>
78 <h3 i18n-content="userAgent"></h3> 107 <h3 i18n-content="userAgent"></h3>
(...skipping 22 matching lines...) Expand all
101 </if> 130 </if>
102 <if expr="pp_ifdef('_google_chrome')"> 131 <if expr="pp_ifdef('_google_chrome')">
103 <div id="product-tos"></div> 132 <div id="product-tos"></div>
104 </if> 133 </if>
105 </div> 134 </div>
106 </div> 135 </div>
107 </body> 136 </body>
108 <script src="chrome://help-frame/strings.js"></script> 137 <script src="chrome://help-frame/strings.js"></script>
109 <script src="chrome://resources/js/i18n_template2.js"></script> 138 <script src="chrome://resources/js/i18n_template2.js"></script>
110 </html> 139 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698