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

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

Issue 2613023003: MD Settings: Use appropriate icon for "manage certificates" button. (Closed)
Patch Set: Created 3 years, 11 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
« 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="chrome://resources/cr_elements/policy/cr_policy_vars_cs s.html"> 2 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_vars_cs s.html">
3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout-classes.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout-classes.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
8 <link rel="import" href="/clear_browsing_data_dialog/clear_browsing_data_dialog. html"> 8 <link rel="import" href="/clear_browsing_data_dialog/clear_browsing_data_dialog. html">
9 <link rel="import" href="/controls/settings_checkbox.html"> 9 <link rel="import" href="/controls/settings_checkbox.html">
10 <link rel="import" href="/controls/settings_toggle_button.html"> 10 <link rel="import" href="/controls/settings_toggle_button.html">
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 </settings-toggle-button> 154 </settings-toggle-button>
155 </div> 155 </div>
156 </if> 156 </if>
157 <if expr="use_nss_certs or is_win or is_macosx"> 157 <if expr="use_nss_certs or is_win or is_macosx">
158 <div id="manageCertificates" class="settings-box two-line" 158 <div id="manageCertificates" class="settings-box two-line"
159 actionable on-tap="onManageCertificatesTap_"> 159 actionable on-tap="onManageCertificatesTap_">
160 <div class="start"> 160 <div class="start">
161 <div>$i18n{manageCertificates}</div> 161 <div>$i18n{manageCertificates}</div>
162 <div class="secondary">$i18n{manageCertificatesDescription}</div> 162 <div class="secondary">$i18n{manageCertificatesDescription}</div>
163 </div> 163 </div>
164 <button class="subpage-arrow" is="paper-icon-button-light"></button> 164 <if expr="use_nss_certs">
165 <button is="paper-icon-button-light" class="subpage-arrow"></button>
166 </if>
167 <if expr="not use_nss_certs">
168 <button is="paper-icon-button-light" class="icon-external"></button>
169 </if>
165 </div> 170 </div>
166 </if> 171 </if>
167 <div id="site-settings-subpage-trigger" 172 <div id="site-settings-subpage-trigger"
168 class="settings-box two-line" actionable 173 class="settings-box two-line" actionable
169 on-tap="onSiteSettingsTap_"> 174 on-tap="onSiteSettingsTap_">
170 <div class="start"> 175 <div class="start">
171 <div>[[siteSettingsPageTitle_()]]</div> 176 <div>[[siteSettingsPageTitle_()]]</div>
172 <div class="secondary">$i18n{siteSettingsDescription}</div> 177 <div class="secondary">$i18n{siteSettingsDescription}</div>
173 </div> 178 </div>
174 <button class="subpage-arrow" is="paper-icon-button-light"></button> 179 <button class="subpage-arrow" is="paper-icon-button-light"></button>
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
395 $i18n{siteSettingsCookieRemoveAll} 400 $i18n{siteSettingsCookieRemoveAll}
396 </paper-button> 401 </paper-button>
397 <site-data-details-subpage page-title="{{pageTitle}}"> 402 <site-data-details-subpage page-title="{{pageTitle}}">
398 </site-data-details-subpage> 403 </site-data-details-subpage>
399 </settings-subpage> 404 </settings-subpage>
400 </template> 405 </template>
401 </settings-animated-pages> 406 </settings-animated-pages>
402 </template> 407 </template>
403 <script src="privacy_page.js"></script> 408 <script src="privacy_page.js"></script>
404 </dom-module> 409 </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