| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #include "components/content_settings/core/common/pref_names.h" | 5 #include "components/content_settings/core/common/pref_names.h" |
| 6 | 6 |
| 7 namespace prefs { | 7 namespace prefs { |
| 8 | 8 |
| 9 // Boolean that is true if we should unconditionally block third-party cookies, | 9 // Boolean that is true if we should unconditionally block third-party cookies, |
| 10 // regardless of other content settings. | 10 // regardless of other content settings. |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 const char kManagedDefaultNotificationsSetting[] = | 31 const char kManagedDefaultNotificationsSetting[] = |
| 32 "profile.managed_default_content_settings.notifications"; | 32 "profile.managed_default_content_settings.notifications"; |
| 33 const char kManagedDefaultMediaStreamSetting[] = | 33 const char kManagedDefaultMediaStreamSetting[] = |
| 34 "profile.managed_default_content_settings.media_stream"; | 34 "profile.managed_default_content_settings.media_stream"; |
| 35 const char kManagedDefaultPluginsSetting[] = | 35 const char kManagedDefaultPluginsSetting[] = |
| 36 "profile.managed_default_content_settings.plugins"; | 36 "profile.managed_default_content_settings.plugins"; |
| 37 const char kManagedDefaultPopupsSetting[] = | 37 const char kManagedDefaultPopupsSetting[] = |
| 38 "profile.managed_default_content_settings.popups"; | 38 "profile.managed_default_content_settings.popups"; |
| 39 const char kManagedDefaultKeygenSetting[] = | 39 const char kManagedDefaultKeygenSetting[] = |
| 40 "profile.managed_default_content_settings.keygen"; | 40 "profile.managed_default_content_settings.keygen"; |
| 41 const char kManagedDefaultWebBluetoothGuardSetting[] = |
| 42 "profile.managed_default_content_settings.web_bluetooth_guard"; |
| 41 | 43 |
| 42 // Preferences that are exclusively used to store managed | 44 // Preferences that are exclusively used to store managed |
| 43 // content settings patterns. | 45 // content settings patterns. |
| 44 const char kManagedAutoSelectCertificateForUrls[] = | 46 const char kManagedAutoSelectCertificateForUrls[] = |
| 45 "profile.managed_auto_select_certificate_for_urls"; | 47 "profile.managed_auto_select_certificate_for_urls"; |
| 46 const char kManagedCookiesAllowedForUrls[] = | 48 const char kManagedCookiesAllowedForUrls[] = |
| 47 "profile.managed_cookies_allowed_for_urls"; | 49 "profile.managed_cookies_allowed_for_urls"; |
| 48 const char kManagedCookiesBlockedForUrls[] = | 50 const char kManagedCookiesBlockedForUrls[] = |
| 49 "profile.managed_cookies_blocked_for_urls"; | 51 "profile.managed_cookies_blocked_for_urls"; |
| 50 const char kManagedCookiesSessionOnlyForUrls[] = | 52 const char kManagedCookiesSessionOnlyForUrls[] = |
| (...skipping 17 matching lines...) Expand all Loading... |
| 68 const char kManagedPopupsAllowedForUrls[] = | 70 const char kManagedPopupsAllowedForUrls[] = |
| 69 "profile.managed_popups_allowed_for_urls"; | 71 "profile.managed_popups_allowed_for_urls"; |
| 70 const char kManagedPopupsBlockedForUrls[] = | 72 const char kManagedPopupsBlockedForUrls[] = |
| 71 "profile.managed_popups_blocked_for_urls"; | 73 "profile.managed_popups_blocked_for_urls"; |
| 72 const char kManagedKeygenAllowedForUrls[] = | 74 const char kManagedKeygenAllowedForUrls[] = |
| 73 "profile.managed_keygen_allowed_for_urls"; | 75 "profile.managed_keygen_allowed_for_urls"; |
| 74 const char kManagedKeygenBlockedForUrls[] = | 76 const char kManagedKeygenBlockedForUrls[] = |
| 75 "profile.managed_keygen_blocked_for_urls"; | 77 "profile.managed_keygen_blocked_for_urls"; |
| 76 | 78 |
| 77 } // namespace prefs | 79 } // namespace prefs |
| OLD | NEW |