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

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

Issue 2699793003: MD Settings: Add MIDI devices to Content Settings (Closed)
Patch Set: add icon and fix tests 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 375 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 toggle-off-label="$i18n{siteSettingsUnsandboxedPluginsBlock}" 386 toggle-off-label="$i18n{siteSettingsUnsandboxedPluginsBlock}"
387 toggle-on-label= 387 toggle-on-label=
388 "$i18n{siteSettingsUnsandboxedPluginsAskRecommended}" 388 "$i18n{siteSettingsUnsandboxedPluginsAskRecommended}"
389 category="{{ContentSettingsTypes.UNSANDBOXED_PLUGINS}}"> 389 category="{{ContentSettingsTypes.UNSANDBOXED_PLUGINS}}">
390 </category-default-setting> 390 </category-default-setting>
391 <category-setting-exceptions 391 <category-setting-exceptions
392 category="{{ContentSettingsTypes.UNSANDBOXED_PLUGINS}}"> 392 category="{{ContentSettingsTypes.UNSANDBOXED_PLUGINS}}">
393 </category-setting-exceptions> 393 </category-setting-exceptions>
394 </settings-subpage> 394 </settings-subpage>
395 </template> 395 </template>
396 <template is="dom-if" route-path="/content/midiDevices" no-search>
397 <settings-subpage page-title="$i18n{siteSettingsMidiDevices}">
398 <category-default-setting
399 toggle-off-label="$i18n{siteSettingsMidiDevicesBlock}"
400 toggle-on-label=
401 "$i18n{siteSettingsMidiDevicesAskRecommended}"
402 category="{{ContentSettingsTypes.MIDI_DEVICES}}">
403 </category-default-setting>
404 <category-setting-exceptions
405 category="{{ContentSettingsTypes.MIDI_DEVICES}}">
406 </category-setting-exceptions>
407 </settings-subpage>
408 </template>
396 <template is="dom-if" route-path="/content/usbDevices" no-search> 409 <template is="dom-if" route-path="/content/usbDevices" no-search>
397 <settings-subpage page-title="$i18n{siteSettingsUsbDevices}"> 410 <settings-subpage page-title="$i18n{siteSettingsUsbDevices}">
398 <usb-devices></usb-devices> 411 <usb-devices></usb-devices>
399 </settings-subpage> 412 </settings-subpage>
400 </template> 413 </template>
401 <template is="dom-if" route-path="/content/siteDetails" no-search> 414 <template is="dom-if" route-path="/content/siteDetails" no-search>
402 <settings-subpage page-title="$i18n{siteSettingsSiteDetails}"> 415 <settings-subpage page-title="$i18n{siteSettingsSiteDetails}">
403 <site-details></site-details> 416 <site-details></site-details>
404 </settings-subpage> 417 </settings-subpage>
405 </template> 418 </template>
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
443 category="{{ContentSettingsTypes.PROTECTED_CONTENT}}"> 456 category="{{ContentSettingsTypes.PROTECTED_CONTENT}}">
444 </category-setting-exceptions> 457 </category-setting-exceptions>
445 </template> 458 </template>
446 </if> 459 </if>
447 </settings-subpage> 460 </settings-subpage>
448 </template> 461 </template>
449 </settings-animated-pages> 462 </settings-animated-pages>
450 </template> 463 </template>
451 <script src="privacy_page.js"></script> 464 <script src="privacy_page.js"></script>
452 </dom-module> 465 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/settings/icons.html ('k') | chrome/browser/resources/settings/route.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698