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

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

Issue 2544723002: MD Settings: Add action indicators in About page buttons. (Closed)
Patch Set: Created 4 years 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <link rel="import" href="chrome://resources/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="/about_page/about_page_browser_proxy.html"> 2 <link rel="import" href="/about_page/about_page_browser_proxy.html">
3 <link rel="import" href="/i18n_setup.html"> 3 <link rel="import" href="/i18n_setup.html">
4 <link rel="import" href="/icons.html"> 4 <link rel="import" href="/icons.html">
5 <link rel="import" href="/lifetime_browser_proxy.html"> 5 <link rel="import" href="/lifetime_browser_proxy.html">
6 <link rel="import" href="/route.html"> 6 <link rel="import" href="/route.html">
7 <link rel="import" href="/settings_page/main_page_behavior.html"> 7 <link rel="import" href="/settings_page/main_page_behavior.html">
8 <link rel="import" href="/settings_page/settings_animated_pages.html"> 8 <link rel="import" href="/settings_page/settings_animated_pages.html">
9 <link rel="import" href="/settings_page/settings_section.html"> 9 <link rel="import" href="/settings_page/settings_section.html">
10 <link rel="import" href="/settings_page_css.html"> 10 <link rel="import" href="/settings_page_css.html">
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 <paper-button id="checkForUpdates" class="secondary-button" 134 <paper-button id="checkForUpdates" class="secondary-button"
135 hidden="[[!shouldShowCheckUpdates_( 135 hidden="[[!shouldShowCheckUpdates_(
136 currentUpdateStatusEvent_)]]" 136 currentUpdateStatusEvent_)]]"
137 on-tap="onCheckUpdatesTap_"> 137 on-tap="onCheckUpdatesTap_">
138 $i18n{aboutCheckForUpdates} 138 $i18n{aboutCheckForUpdates}
139 </paper-button> 139 </paper-button>
140 </if> 140 </if>
141 </span> 141 </span>
142 </div> 142 </div>
143 <div id="help" class="settings-box" on-tap="onHelpTap_" actionable> 143 <div id="help" class="settings-box" on-tap="onHelpTap_" actionable>
144 $i18n{aboutGetHelpUsingChrome} 144 <div class="start">$i18n{aboutGetHelpUsingChrome}</div>
145 <button class="icon-external" is="paper-icon-button-light">
146 </button>
145 </div> 147 </div>
146 <if expr="_google_chrome"> 148 <if expr="_google_chrome">
147 <div id="reportIssue" class="settings-box" actionable 149 <div id="reportIssue" class="settings-box" actionable
148 on-tap="onReportIssueTap_"> 150 on-tap="onReportIssueTap_">
149 $i18n{aboutReportAnIssue} 151 <div class="start">$i18n{aboutReportAnIssue}</div>
152 <button class="subpage-arrow" is="paper-icon-button-light">
153 </button>
150 </div> 154 </div>
151 </if> 155 </if>
152 <if expr="chromeos"> 156 <if expr="chromeos">
153 <div class="settings-box" on-tap="onDetailedBuildInfoTap_" 157 <div class="settings-box" on-tap="onDetailedBuildInfoTap_"
154 actionable> 158 actionable>
155 $i18n{aboutDetailedBuildInfo} 159 <div class="start">$i18n{aboutDetailedBuildInfo}</div>
160 <button class="subpage-arrow" is="paper-icon-button-light">
161 </button>
156 </div> 162 </div>
157 </if> 163 </if>
158 <div class="settings-box product-info copyable"> 164 <div class="settings-box product-info copyable">
159 <div class="info-section"> 165 <div class="info-section">
160 <div class="secondary">$i18n{aboutProductTitle}</div> 166 <div class="secondary">$i18n{aboutProductTitle}</div>
161 <div class="secondary">$i18n{aboutProductCopyright}</div> 167 <div class="secondary">$i18n{aboutProductCopyright}</div>
162 </div> 168 </div>
163 169
164 <div class="info-section"> 170 <div class="info-section">
165 <div class="secondary">$i18nRaw{aboutProductLicense}</div> 171 <div class="secondary">$i18nRaw{aboutProductLicense}</div>
(...skipping 18 matching lines...) Expand all
184 <settings-detailed-build-info></settings-detailed-build-info> 190 <settings-detailed-build-info></settings-detailed-build-info>
185 </settings-subpage> 191 </settings-subpage>
186 </template> 192 </template>
187 </if> 193 </if>
188 </settings-animated-pages> 194 </settings-animated-pages>
189 </settings-section> 195 </settings-section>
190 </div> 196 </div>
191 </template> 197 </template>
192 <script src="about_page.js"></script> 198 <script src="about_page.js"></script>
193 </dom-module> 199 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698