Chromium Code Reviews| 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 // Version of the pattern format used to define content settings. | 9 // Version of the pattern format used to define content settings. |
| 10 const char kContentSettingsVersion[] = "profile.content_settings.pref_version"; | 10 const char kContentSettingsVersion[] = "profile.content_settings.pref_version"; |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 71 "profile.managed_popups_allowed_for_urls"; | 71 "profile.managed_popups_allowed_for_urls"; |
| 72 const char kManagedPopupsBlockedForUrls[] = | 72 const char kManagedPopupsBlockedForUrls[] = |
| 73 "profile.managed_popups_blocked_for_urls"; | 73 "profile.managed_popups_blocked_for_urls"; |
| 74 const char kManagedNotificationsAllowedForUrls[] = | 74 const char kManagedNotificationsAllowedForUrls[] = |
| 75 "profile.managed_notifications_allowed_for_urls"; | 75 "profile.managed_notifications_allowed_for_urls"; |
| 76 const char kManagedNotificationsBlockedForUrls[] = | 76 const char kManagedNotificationsBlockedForUrls[] = |
| 77 "profile.managed_notifications_blocked_for_urls"; | 77 "profile.managed_notifications_blocked_for_urls"; |
| 78 const char kManagedAutoSelectCertificateForUrls[] = | 78 const char kManagedAutoSelectCertificateForUrls[] = |
| 79 "profile.managed_auto_select_certificate_for_urls"; | 79 "profile.managed_auto_select_certificate_for_urls"; |
| 80 | 80 |
| 81 const char kSupervisedGeolocationDisabled[] = | |
|
Bernhard Bauer
2015/02/05 12:07:52
As previously discussed offline, I'm not sure if g
knn
2015/02/26 12:07:30
Done.
| |
| 82 "profile.supervised_geolocation_disabled"; | |
| 83 const char kSupervisedCameraMicDisabled[] = | |
| 84 "profile.supervised_camera_mic_disabled"; | |
| 85 | |
| 81 } // namespace prefs | 86 } // namespace prefs |
| OLD | NEW |