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

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

Issue 2851933002: [MD settings] correct category for SUBRESOURCE_FILTER (Closed)
Patch Set: Created 3 years, 7 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/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/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 392 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 </template> 403 </template>
404 <template is="dom-if" if="[[enableSafeBrowsingSubresourceFilter_]]" 404 <template is="dom-if" if="[[enableSafeBrowsingSubresourceFilter_]]"
405 route-path="/content/subresourceFilter" no-search> 405 route-path="/content/subresourceFilter" no-search>
406 <settings-subpage page-title="$i18n{siteSettingsSubresourceFilter}"> 406 <settings-subpage page-title="$i18n{siteSettingsSubresourceFilter}">
407 <category-default-setting 407 <category-default-setting
408 category="{{ContentSettingsTypes.SUBRESOURCE_FILTER}}" 408 category="{{ContentSettingsTypes.SUBRESOURCE_FILTER}}"
409 toggle-off-label="$i18n{siteSettingsSubresourceFilterAllow}" 409 toggle-off-label="$i18n{siteSettingsSubresourceFilterAllow}"
410 toggle-on-label="$i18n{siteSettingsSubresourceFilterBlock}"> 410 toggle-on-label="$i18n{siteSettingsSubresourceFilterBlock}">
411 </category-default-setting> 411 </category-default-setting>
412 <category-setting-exceptions 412 <category-setting-exceptions
413 category="{{ContentSettingsTypes.SUBRESOURCE_FITER}}"> 413 category="{{ContentSettingsTypes.SUBRESOURCE_FILTER}}">
414 </category-setting-exceptions> 414 </category-setting-exceptions>
415 </settings-subpage> 415 </settings-subpage>
416 </template> 416 </template>
417 <template is="dom-if" route-path="/content/unsandboxedPlugins" no-search> 417 <template is="dom-if" route-path="/content/unsandboxedPlugins" no-search>
418 <settings-subpage page-title="$i18n{siteSettingsUnsandboxedPlugins}"> 418 <settings-subpage page-title="$i18n{siteSettingsUnsandboxedPlugins}">
419 <category-default-setting 419 <category-default-setting
420 toggle-off-label="$i18n{siteSettingsUnsandboxedPluginsBlock}" 420 toggle-off-label="$i18n{siteSettingsUnsandboxedPluginsBlock}"
421 toggle-on-label= 421 toggle-on-label=
422 "$i18n{siteSettingsUnsandboxedPluginsAskRecommended}" 422 "$i18n{siteSettingsUnsandboxedPluginsAskRecommended}"
423 category="{{ContentSettingsTypes.UNSANDBOXED_PLUGINS}}"> 423 category="{{ContentSettingsTypes.UNSANDBOXED_PLUGINS}}">
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
490 category="{{ContentSettingsTypes.PROTECTED_CONTENT}}"> 490 category="{{ContentSettingsTypes.PROTECTED_CONTENT}}">
491 </category-setting-exceptions> 491 </category-setting-exceptions>
492 </template> 492 </template>
493 </if> 493 </if>
494 </settings-subpage> 494 </settings-subpage>
495 </template> 495 </template>
496 </settings-animated-pages> 496 </settings-animated-pages>
497 </template> 497 </template>
498 <script src="privacy_page.js"></script> 498 <script src="privacy_page.js"></script>
499 </dom-module> 499 </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