| OLD | NEW |
| 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/cr_dialog/cr_dialog.html
"> | 2 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> |
| 3 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_vars_cs
s.html"> | 3 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_vars_cs
s.html"> |
| 4 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 4 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 5 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 5 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
| 6 <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/iron-flex-layout/iron-f
lex-layout-classes.html"> |
| 7 <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/neon-animation/neon-ani
matable.html"> |
| 8 <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-button/paper-butt
on.html"> |
| 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
| 10 <link rel="import" href="../clear_browsing_data_dialog/clear_browsing_data_dialo
g.html"> | 10 <link rel="import" href="../clear_browsing_data_dialog/clear_browsing_data_dialo
g.html"> |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 aria-describedby="siteSettingsSecondary"></button> | 192 aria-describedby="siteSettingsSecondary"></button> |
| 193 </div> | 193 </div> |
| 194 <div class="settings-box two-line" id="clearBrowsingData" | 194 <div class="settings-box two-line" id="clearBrowsingData" |
| 195 on-tap="onClearBrowsingDataTap_" actionable> | 195 on-tap="onClearBrowsingDataTap_" actionable> |
| 196 <div class="start"> | 196 <div class="start"> |
| 197 $i18n{clearBrowsingData} | 197 $i18n{clearBrowsingData} |
| 198 <div class="secondary" id="clearBrowsingDataSecondary"> | 198 <div class="secondary" id="clearBrowsingDataSecondary"> |
| 199 $i18n{clearBrowsingDataDescription} | 199 $i18n{clearBrowsingDataDescription} |
| 200 </div> | 200 </div> |
| 201 </div> | 201 </div> |
| 202 <button class="subpage-arrow" is="paper-icon-button-light" | 202 <button is="paper-icon-button-light" id="clearBrowsingDataTrigger" |
| 203 aria-label="$i18n{clearBrowsingData}" | 203 class="subpage-arrow" aria-label="$i18n{clearBrowsingData}" |
| 204 aria-describedby="clearBrowsingDataSecondary"></button> | 204 aria-describedby="clearBrowsingDataSecondary"></button> |
| 205 </div> | 205 </div> |
| 206 </neon-animatable> | 206 </neon-animatable> |
| 207 <if expr="use_nss_certs"> | 207 <if expr="use_nss_certs"> |
| 208 <template is="dom-if" route-path="/certificates"> | 208 <template is="dom-if" route-path="/certificates"> |
| 209 <settings-subpage | 209 <settings-subpage |
| 210 associated-control="[[$$('#manageCertificates')]]" | 210 associated-control="[[$$('#manageCertificates')]]" |
| 211 page-title="$i18n{manageCertificates}"> | 211 page-title="$i18n{manageCertificates}"> |
| 212 <settings-certificate-manager-page> | 212 <settings-certificate-manager-page> |
| 213 </settings-certificate-manager-page> | 213 </settings-certificate-manager-page> |
| (...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 486 category="{{ContentSettingsTypes.PROTECTED_CONTENT}}"> | 486 category="{{ContentSettingsTypes.PROTECTED_CONTENT}}"> |
| 487 </category-setting-exceptions> | 487 </category-setting-exceptions> |
| 488 </template> | 488 </template> |
| 489 </if> | 489 </if> |
| 490 </settings-subpage> | 490 </settings-subpage> |
| 491 </template> | 491 </template> |
| 492 </settings-animated-pages> | 492 </settings-animated-pages> |
| 493 </template> | 493 </template> |
| 494 <script src="privacy_page.js"></script> | 494 <script src="privacy_page.js"></script> |
| 495 </dom-module> | 495 </dom-module> |
| OLD | NEW |