| 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/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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 <div id="site-settings-subpage-trigger" | 161 <div id="site-settings-subpage-trigger" |
| 162 class="settings-box two-line" actionable | 162 class="settings-box two-line" actionable |
| 163 on-tap="onSiteSettingsTap_"> | 163 on-tap="onSiteSettingsTap_"> |
| 164 <div class="start"> | 164 <div class="start"> |
| 165 [[siteSettingsPageTitle_()]] | 165 [[siteSettingsPageTitle_()]] |
| 166 <div class="secondary" id="siteSettingsSecondary"> | 166 <div class="secondary" id="siteSettingsSecondary"> |
| 167 $i18n{siteSettingsDescription} | 167 $i18n{siteSettingsDescription} |
| 168 </div> | 168 </div> |
| 169 </div> | 169 </div> |
| 170 <button class="subpage-arrow" is="paper-icon-button-light" | 170 <button class="subpage-arrow" is="paper-icon-button-light" |
| 171 aria-label="[[siteSettingsPageTitle_()]]" | 171 aria-label$="[[siteSettingsPageTitle_()]]" |
| 172 aria-describedby="siteSettingsSecondary"></button> | 172 aria-describedby="siteSettingsSecondary"></button> |
| 173 </div> | 173 </div> |
| 174 <div class="settings-box two-line" id="clearBrowsingData" | 174 <div class="settings-box two-line" id="clearBrowsingData" |
| 175 on-tap="onClearBrowsingDataTap_" actionable> | 175 on-tap="onClearBrowsingDataTap_" actionable> |
| 176 <div class="start"> | 176 <div class="start"> |
| 177 $i18n{clearBrowsingData} | 177 $i18n{clearBrowsingData} |
| 178 <div class="secondary" id="clearBrowsingDataSecondary"> | 178 <div class="secondary" id="clearBrowsingDataSecondary"> |
| 179 $i18n{clearBrowsingDataDescription} | 179 $i18n{clearBrowsingDataDescription} |
| 180 </div> | 180 </div> |
| 181 </div> | 181 </div> |
| (...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 453 category="{{ContentSettingsTypes.PROTECTED_CONTENT}}"> | 453 category="{{ContentSettingsTypes.PROTECTED_CONTENT}}"> |
| 454 </category-setting-exceptions> | 454 </category-setting-exceptions> |
| 455 </template> | 455 </template> |
| 456 </if> | 456 </if> |
| 457 </settings-subpage> | 457 </settings-subpage> |
| 458 </template> | 458 </template> |
| 459 </settings-animated-pages> | 459 </settings-animated-pages> |
| 460 </template> | 460 </template> |
| 461 <script src="privacy_page.js"></script> | 461 <script src="privacy_page.js"></script> |
| 462 </dom-module> | 462 </dom-module> |
| OLD | NEW |