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

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

Issue 2691043005: MD Settings: Add Learn More button to the Passwords subpage (Closed)
Patch Set: Merge branch 'master' of https://chromium.googlesource.com/chromium/src into 406-md-settings-passwo… Created 3 years, 10 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
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/i18n_behavior.html"> 3 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
4 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 4 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
5 <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/iron-flex-layout/iron-f lex-layout-classes.html">
6 <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/neon-animation/neon-ani matable.html">
7 <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-button/paper-butt on.html">
8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
9 <link rel="import" href="../clear_browsing_data_dialog/clear_browsing_data_dialo g.html"> 9 <link rel="import" href="../clear_browsing_data_dialog/clear_browsing_data_dialo g.html">
10 <link rel="import" href="../controls/settings_toggle_button.html"> 10 <link rel="import" href="../controls/settings_toggle_button.html">
(...skipping 17 matching lines...) Expand all
28 <link rel="import" href="../site_settings_page/site_settings_page.html"> 28 <link rel="import" href="../site_settings_page/site_settings_page.html">
29 29
30 <if expr="use_nss_certs"> 30 <if expr="use_nss_certs">
31 <link rel="import" href="../certificate_manager_page/certificate_manager_page.ht ml"> 31 <link rel="import" href="../certificate_manager_page/certificate_manager_page.ht ml">
32 </if> 32 </if>
33 <link rel="import" href="privacy_page_browser_proxy.html"> 33 <link rel="import" href="privacy_page_browser_proxy.html">
34 34
35 <dom-module id="settings-privacy-page"> 35 <dom-module id="settings-privacy-page">
36 <template> 36 <template>
37 <style include="settings-shared"> 37 <style include="settings-shared">
38 button[is='paper-icon-button-light'].icon-help {
39 background-image: url(../images/help_outline.svg);
40 }
41 </style> 38 </style>
42 <template is="dom-if" if="[[showClearBrowsingDataDialog_]]" restamp> 39 <template is="dom-if" if="[[showClearBrowsingDataDialog_]]" restamp>
43 <settings-clear-browsing-data-dialog prefs="{{prefs}}" 40 <settings-clear-browsing-data-dialog prefs="{{prefs}}"
44 on-close="onDialogClosed_"> 41 on-close="onDialogClosed_">
45 </settings-clear-browsing-data-dialog> 42 </settings-clear-browsing-data-dialog>
46 </template> 43 </template>
47 <settings-animated-pages id="pages" section="privacy"> 44 <settings-animated-pages id="pages" section="privacy">
48 <neon-animatable route-path="default"> 45 <neon-animatable route-path="default">
49 <div class="settings-box first"> 46 <div class="settings-box first">
50 <p class="privacy-explanation">$i18nRaw{improveBrowsingExperience}</p> 47 <p class="privacy-explanation">$i18nRaw{improveBrowsingExperience}</p>
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 page-title="$i18n{manageCertificates}"> 190 page-title="$i18n{manageCertificates}">
194 <settings-certificate-manager-page> 191 <settings-certificate-manager-page>
195 </settings-certificate-manager-page> 192 </settings-certificate-manager-page>
196 </settings-subpage> 193 </settings-subpage>
197 </template> 194 </template>
198 </if> 195 </if>
199 <template is="dom-if" route-path="/content"> 196 <template is="dom-if" route-path="/content">
200 <settings-subpage 197 <settings-subpage
201 associated-control="[[$$('#site-settings-subpage-trigger')]]" 198 associated-control="[[$$('#site-settings-subpage-trigger')]]"
202 id="site-settings" 199 id="site-settings"
203 page-title="[[siteSettingsPageTitle_()]]"> 200 page-title="[[siteSettingsPageTitle_()]]"
204 <button class="icon-help subpage-title-extra" 201 learn-more-url="$i18n{exceptionsLearnMoreURL}">
205 is="paper-icon-button-light" on-tap="onHelpTap_"></button>
206 <settings-site-settings-page></settings-site-settings-page> 202 <settings-site-settings-page></settings-site-settings-page>
207 </settings-subpage> 203 </settings-subpage>
208 </template> 204 </template>
209 205
210 <template is="dom-if" route-path="/content/all" no-search> 206 <template is="dom-if" route-path="/content/all" no-search>
211 <settings-subpage page-title="$i18n{siteSettingsCategoryAllSites}"> 207 <settings-subpage page-title="$i18n{siteSettingsCategoryAllSites}">
212 <all-sites></all-sites> 208 <all-sites></all-sites>
213 </settings-subpage> 209 </settings-subpage>
214 </template> 210 </template>
215 <template is="dom-if" route-path="/content/automaticDownloads" no-search> 211 <template is="dom-if" route-path="/content/automaticDownloads" no-search>
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
443 category="{{ContentSettingsTypes.PROTECTED_CONTENT}}"> 439 category="{{ContentSettingsTypes.PROTECTED_CONTENT}}">
444 </category-setting-exceptions> 440 </category-setting-exceptions>
445 </template> 441 </template>
446 </if> 442 </if>
447 </settings-subpage> 443 </settings-subpage>
448 </template> 444 </template>
449 </settings-animated-pages> 445 </settings-animated-pages>
450 </template> 446 </template>
451 <script src="privacy_page.js"></script> 447 <script src="privacy_page.js"></script>
452 </dom-module> 448 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698