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

Side by Side Diff: chrome/browser/resources/options/about_page.html

Issue 9814030: get rid of old options pages (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more fixes Created 8 years, 9 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
(Empty)
1 <div id="aboutPage" class="page" hidden>
2 <h1 i18n-content="product"></h1>
3 <div id="aboutPageLessInfo">
4 <section>
5 <div>
6 <!-- White space is significant between spans. -->
7 <div>
8 <span i18n-content="browser"></span>
9 <span i18n-content="browser_version"></span>
10 </div>
11 <div>
12 <if expr="not pp_ifdef('chromeos')">
13 <span i18n-content="os"></span> <span id="osVersion0">
14 </if>
15 <if expr="pp_ifdef('chromeos')">
16 <span i18n-content="platform"></span> <span id="osVersion0">
17 </if>
18 <span class="loading" i18n-content="loading"></span></span></div>
19 <div><span i18n-content="firmware"></span> <span id="osFirmware0">
20 <span class="loading" i18n-content="loading"></span></span></div>
21 <div>
22 <button id="moreInfoButton" class="link-button"
23 i18n-content="more_info"></button>
24 </div>
25 </div>
26 </section>
27 </div>
28 <div id="aboutPageMoreInfo" hidden>
29 <section>
30 <h3 i18n-content="channel"></h3>
31 <div>
32 <select id="channelSelect">
33 <option value="stable-channel" i18n-content="stable"></option>
34 <option value="beta-channel" i18n-content="beta"></option>
35 <option value="dev-channel" i18n-content="dev"></option>
36 </select>
37 <div id="channelWarningBlock" hidden>
38 <div id="channelWarning" i18n-content="channel_warning_header"></div>
39 <div i18n-content="channel_warning_text"></div>
40 </div>
41 </div>
42 </section>
43 <section>
44 <h3 i18n-content="browser"></h3>
45 <div i18n-content="browser_version"></div>
46 </section>
47 <section>
48 <if expr="not pp_ifdef('chromeos')">
49 <h3 i18n-content="os"></h3>
50 </if>
51 <if expr="pp_ifdef('chromeos')">
52 <h3 i18n-content="platform"></h3>
53 </if>
54 <div id="osVersion1">
55 <span class="loading" i18n-content="loading"></span>
56 </div>
57 </section>
58 <section>
59 <h3 i18n-content="firmware"></h3>
60 <div id="osFirmware1">
61 <span class="loading" i18n-content="loading"></span>
62 </section>
63 <section>
64 <h3>WebKit</h3>
65 <div i18n-content="webkit_version"></div>
66 </section>
67 <section>
68 <h3 i18n-content="js_engine"></h3>
69 <div i18n-content="js_engine_version"></div>
70 </section>
71 <section>
72 <h3 i18n-content="user_agent"></h3>
73 <div i18n-content="user_agent_info"></div>
74 </section>
75 <section>
76 <h3 i18n-content="command_line"></h3>
77 <div i18n-content="command_line_info"></div>
78 </section>
79 </div>
80 <section>
81 <div>
82 <div i18n-content="copyright"></div>
83 <div>
84 <!-- Odd formatting to avoid unwanted spaces between elements. -->
85 <span i18n-content="license_content_0">
86 </span><a target="_blank"
87 i18n-values="href:license_link_0"
88 i18n-content="license_link_content_0">
89 </a><span i18n-content="license_content_1">
90 </span><a target="_blank"
91 i18n-values="href:license_link_1"
92 i18n-content="license_link_content_1">
93 </a><span i18n-content="license_content_2">
94 </span>
95 </div>
96 <div>
97 <span i18n-content="cros_license_content_0">
98 </span><a target="_blank"
99 i18n-values="href:cros_license_link_0"
100 i18n-content="cros_license_link_content_0">
101 </a><span i18n-content="cros_license_content_1">
102 </span>
103 </div>
104 </div>
105 </section>
106 <section>
107 <div>
108 <div>
109 <div id="updateIcon" class="update-icon up-to-date"></div>
110 <span id="updateStatus" i18n-content="update_status"></span>
111 </div>
112 <div>
113 <!-- TODO seanparent: fill in last checked. -->
114 <!-- <span i18n-content="last_check"></span> -->
115 <button id="checkNow" i18n-content="check_now" disabled></button>
116 </div>
117 </div>
118 </section>
119 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698