| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 cr.exportPath('settings'); | 5 cr.exportPath('settings'); |
| 6 | 6 |
| 7 /** | 7 /** |
| 8 * All possible contentSettingsTypes that we currently support configuring in | 8 * All possible contentSettingsTypes that we currently support configuring in |
| 9 * the UI. Both top-level categories and content settings that represent | 9 * the UI. Both top-level categories and content settings that represent |
| 10 * individual permissions under Site Details should appear here. This is a | 10 * individual permissions under Site Details should appear here. This is a |
| 11 * subset of the constants found in site_settings_helper.cc and the values | 11 * subset of the constants found in site_settings_helper.cc and the values |
| 12 * should be kept in sync. | 12 * should be kept in sync. |
| 13 * @enum {string} | 13 * @enum {string} |
| 14 */ | 14 */ |
| 15 settings.ContentSettingsTypes = { | 15 settings.ContentSettingsTypes = { |
| 16 COOKIES: 'cookies', | 16 COOKIES: 'cookies', |
| 17 IMAGES: 'images', | 17 IMAGES: 'images', |
| 18 JAVASCRIPT: 'javascript', | 18 JAVASCRIPT: 'javascript', |
| 19 PLUGINS: 'plugins', | 19 PLUGINS: 'plugins', |
| 20 POPUPS: 'popups', | 20 POPUPS: 'popups', |
| 21 GEOLOCATION: 'location', | 21 GEOLOCATION: 'location', |
| 22 NOTIFICATIONS: 'notifications', | 22 NOTIFICATIONS: 'notifications', |
| 23 MIC: 'media-stream-mic', | 23 MIC: 'media-stream-mic', |
| 24 CAMERA: 'media-stream-camera', | 24 CAMERA: 'media-stream-camera', |
| 25 PROTOCOL_HANDLERS: 'register-protocol-handler', | 25 PROTOCOL_HANDLERS: 'register-protocol-handler', |
| 26 UNSANDBOXED_PLUGINS: 'ppapi-broker', | 26 UNSANDBOXED_PLUGINS: 'ppapi-broker', |
| 27 AUTOMATIC_DOWNLOADS: 'multiple-automatic-downloads', | 27 AUTOMATIC_DOWNLOADS: 'multiple-automatic-downloads', |
| 28 BACKGROUND_SYNC: 'background-sync', | 28 BACKGROUND_SYNC: 'background-sync', |
| 29 MIDI_DEVICES: 'midi-sysex', |
| 29 USB_DEVICES: 'usb-chooser-data', | 30 USB_DEVICES: 'usb-chooser-data', |
| 30 ZOOM_LEVELS: 'zoom-levels', | 31 ZOOM_LEVELS: 'zoom-levels', |
| 31 // <if expr="chromeos"> | 32 // <if expr="chromeos"> |
| 32 PROTECTED_CONTENT: 'protectedContent', | 33 PROTECTED_CONTENT: 'protectedContent', |
| 33 // </if> | 34 // </if> |
| 34 }; | 35 }; |
| 35 | 36 |
| 36 /** | 37 /** |
| 37 * Contains the possible string values for a given contentSettingsType. | 38 * Contains the possible string values for a given contentSettingsType. |
| 38 * @enum {string} | 39 * @enum {string} |
| (...skipping 14 matching lines...) Expand all Loading... |
| 53 * A category value to use for the All Sites list. | 54 * A category value to use for the All Sites list. |
| 54 * @const {string} | 55 * @const {string} |
| 55 */ | 56 */ |
| 56 settings.ALL_SITES = 'all-sites'; | 57 settings.ALL_SITES = 'all-sites'; |
| 57 | 58 |
| 58 /** | 59 /** |
| 59 * An invalid subtype value. | 60 * An invalid subtype value. |
| 60 * @const {string} | 61 * @const {string} |
| 61 */ | 62 */ |
| 62 settings.INVALID_CATEGORY_SUBTYPE = ''; | 63 settings.INVALID_CATEGORY_SUBTYPE = ''; |
| OLD | NEW |