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

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

Issue 423533003: Use PageManager in About page (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix settings app browser test Created 6 years, 4 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
OLDNEW
(Empty)
1 <div class="content-area">
2 <div id="about-container">
3 <img src="chrome://theme/IDR_PRODUCT_LOGO_32">
4 <div id="product-description">
5 <h2 i18n-content="aboutProductTitle"></h2>
6 <span i18n-content="aboutProductDescription"></span>
7 </div>
8 </div>
9 <div id="help-container">
10 <button id="get-help" i18n-content="getHelpWithChrome"></button>
11 <if expr="_google_chrome">
12 <button id="report-issue" i18n-content="reportAnIssue"></button>
13 </if>
14 </div>
15 <div id="version-container">
16 <div i18n-content="browserVersion" dir="ltr"></div>
17 <if expr="chromeos">
18 <div>
19 <span i18n-content="platform"></span>&nbsp;<span id="os-version"></span>
20 </div>
21 <div>
22 <span i18n-content="firmware"></span>&nbsp;<span id="firmware"></span>
23 </div>
24 </if>
25 <if expr="chromeos or _google_chrome or is_linux">
26 <div id="update-status-container" hidden>
27 <div id="update-status-icon" class="help-page-icon up-to-date"></div>
28 <div id="update-status-message-container">
29 <div id="update-status-message" i18n-content="updateCheckStarted">
30 </div>
31 <if expr="is_macosx">
32 <div id="update-obsolete-system-container" hidden>
33 <span id="update-obsolete-system"
34 i18n-content="updateObsoleteSystem"></span>
35 <a i18n-values="href:updateObsoleteSystemURL"
36 i18n-content="learnMore" target="_blank"></a>
37 </div>
38 </if>
39 <div id="allowed-connection-types-message" hidden></div>
40 </div>
41 </div>
42 <div id="update-buttons-container">
43 <div id="update-percentage" hidden></div>
44 <if expr="is_macosx">
45 <button id="promote" i18n-content="promote" hidden></button>
46 </if>
47 <button id="relaunch" i18n-content="relaunch" hidden></button>
48 <if expr="chromeos">
49 <button id="relaunch-and-powerwash"
50 i18n-content="relaunchAndPowerwash" hidden>
51 </button>
52 </if>
53 </div>
54 </if>
55 <if expr="chromeos">
56 <div id="more-info-container">
57 <section id="channel-changer-container" hidden>
58 <h3 i18n-content="channel"></h3>
59 <select id="channel-changer">
60 <option value="stable-channel" i18n-content="stable"></option>
61 <option value="beta-channel" i18n-content="beta"></option>
62 <option value="dev-channel" i18n-content="dev"></option>
63 </select>
64 <div id="channel-change-confirmation" hidden></div>
65 </section>
66 <section id="channel-change-page-container" hidden>
67 <h3 i18n-content="channel"></h3>
68 <div id="current-channel"></div>
69 <button id="change-channel"
70 i18n-content="channelChangeButton" disabled>
71 </button>
72 <div id="channel-change-disallowed-icon"
73 class="help-page-icon" hidden>
74 </div>
75 </section>
76 <section>
77 <h3 i18n-content="webkit"></h3>
78 <div i18n-content="webkitVersion" dir="ltr"></div>
79 </section>
80 <section>
81 <h3 i18n-content="jsEngine" dir="ltr"></h3>
82 <div i18n-content="jsEngineVersion"></div>
83 </section>
84 <section>
85 <h3 i18n-content="userAgent"></h3>
86 <div i18n-content="userAgentInfo" dir="ltr"></div>
87 </section>
88 <section>
89 <h3 i18n-content="commandLine"></h3>
90 <div i18n-content="commandLineInfo" dir="ltr"></div>
91 </section>
92 <section id="build-date-container" class="empty">
93 <h3 i18n-content="buildDate"></h3>
94 <div id="build-date"></div>
95 </section>
96 </div>
97 <button id="more-info-expander" class="link-button"
98 i18n-content="showMoreInfo">
99 </button>
100 </if>
101 </div>
102 <div id="product-container">
103 <div i18n-content="productName"></div>
104 <div i18n-content="productCopyright"></div>
105 <div id="product-license"></div>
106 <if expr="chromeos">
107 <div id="product-os-license"></div>
108 </if>
109 <if expr="_google_chrome">
110 <div id="product-tos"></div>
111 </if>
112 </div>
113 </div>
OLDNEW
« no previous file with comments | « chrome/browser/resources/help/help_content.css ('k') | chrome/browser/resources/help/help_focus_manager.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698