| 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/assert.html"> | 4 <link rel="import" href="chrome://resources/html/assert.html"> |
| 5 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html"> | 5 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html"> |
| 6 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 6 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 7 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 7 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
| 8 <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/neon-animation/neon-ani
matable.html"> |
| 9 <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-button/paper-butt
on.html"> |
| 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> | 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
| (...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 406 <template is="dom-if" if="[[enableSafeBrowsingSubresourceFilter_]]" | 406 <template is="dom-if" if="[[enableSafeBrowsingSubresourceFilter_]]" |
| 407 no-search> | 407 no-search> |
| 408 <template is="dom-if" route-path="/content/subresourceFilter" no-search> | 408 <template is="dom-if" route-path="/content/subresourceFilter" no-search> |
| 409 <settings-subpage page-title="$i18n{siteSettingsSubresourceFilter}"> | 409 <settings-subpage page-title="$i18n{siteSettingsSubresourceFilter}"> |
| 410 <category-default-setting | 410 <category-default-setting |
| 411 category="{{ContentSettingsTypes.SUBRESOURCE_FILTER}}" | 411 category="{{ContentSettingsTypes.SUBRESOURCE_FILTER}}" |
| 412 toggle-off-label="$i18n{siteSettingsSubresourceFilterAllow}" | 412 toggle-off-label="$i18n{siteSettingsSubresourceFilterAllow}" |
| 413 toggle-on-label="$i18n{siteSettingsSubresourceFilterBlock}"> | 413 toggle-on-label="$i18n{siteSettingsSubresourceFilterBlock}"> |
| 414 </category-default-setting> | 414 </category-default-setting> |
| 415 <category-setting-exceptions | 415 <category-setting-exceptions |
| 416 category="{{ContentSettingsTypes.SUBRESOURCE_FILTER}}"> | 416 category="{{ContentSettingsTypes.SUBRESOURCE_FILTER}}" |
| 417 read-only-list> |
| 417 </category-setting-exceptions> | 418 </category-setting-exceptions> |
| 418 </settings-subpage> | 419 </settings-subpage> |
| 419 </template> | 420 </template> |
| 420 </template> | 421 </template> |
| 421 <template is="dom-if" route-path="/content/unsandboxedPlugins" no-search> | 422 <template is="dom-if" route-path="/content/unsandboxedPlugins" no-search> |
| 422 <settings-subpage page-title="$i18n{siteSettingsUnsandboxedPlugins}"> | 423 <settings-subpage page-title="$i18n{siteSettingsUnsandboxedPlugins}"> |
| 423 <category-default-setting | 424 <category-default-setting |
| 424 toggle-off-label="$i18n{siteSettingsUnsandboxedPluginsBlock}" | 425 toggle-off-label="$i18n{siteSettingsUnsandboxedPluginsBlock}" |
| 425 toggle-on-label= | 426 toggle-on-label= |
| 426 "$i18n{siteSettingsUnsandboxedPluginsAskRecommended}" | 427 "$i18n{siteSettingsUnsandboxedPluginsAskRecommended}" |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 494 category="{{ContentSettingsTypes.PROTECTED_CONTENT}}"> | 495 category="{{ContentSettingsTypes.PROTECTED_CONTENT}}"> |
| 495 </category-setting-exceptions> | 496 </category-setting-exceptions> |
| 496 </template> | 497 </template> |
| 497 </if> | 498 </if> |
| 498 </settings-subpage> | 499 </settings-subpage> |
| 499 </template> | 500 </template> |
| 500 </settings-animated-pages> | 501 </settings-animated-pages> |
| 501 </template> | 502 </template> |
| 502 <script src="privacy_page.js"></script> | 503 <script src="privacy_page.js"></script> |
| 503 </dom-module> | 504 </dom-module> |
| OLD | NEW |