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

Side by Side Diff: components/content_settings/core/common/pref_names.cc

Issue 902833003: Add a HostContentSettingsMap layer for Supervised Users. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 // 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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698