| 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 "chrome/browser/supervised_user/supervised_user_constants.h" | 5 #include "chrome/browser/supervised_user/supervised_user_constants.h" |
| 6 | 6 |
| 7 namespace supervised_users { | 7 namespace supervised_users { |
| 8 | 8 |
| 9 const char kApprovedExtensions[] = "ApprovedExtensions"; | 9 const char kApprovedExtensions[] = "ApprovedExtensions"; |
| 10 const char kCameraMicDisabled[] = "CameraMicDisabled"; | 10 const char kCameraMicDisabled[] = "CameraMicDisabled"; |
| 11 const char kContentPackDefaultFilteringBehavior[] = | 11 const char kContentPackDefaultFilteringBehavior[] = |
| 12 "ContentPackDefaultFilteringBehavior"; | 12 "ContentPackDefaultFilteringBehavior"; |
| 13 const char kContentPackManualBehaviorHosts[] = "ContentPackManualBehaviorHosts"; | 13 const char kContentPackManualBehaviorHosts[] = "ContentPackManualBehaviorHosts"; |
| 14 const char kContentPackManualBehaviorURLs[] = "ContentPackManualBehaviorURLs"; | 14 const char kContentPackManualBehaviorURLs[] = "ContentPackManualBehaviorURLs"; |
| 15 const char kCookiesAlwaysAllowed[] = "CookiesAlwaysAllowed"; |
| 15 const char kForceSafeSearch[] = "ForceSafeSearch"; | 16 const char kForceSafeSearch[] = "ForceSafeSearch"; |
| 16 const char kGeolocationDisabled[] = "GeolocationDisabled"; | 17 const char kGeolocationDisabled[] = "GeolocationDisabled"; |
| 17 const char kRecordHistory[] = "RecordHistory"; | 18 const char kRecordHistory[] = "RecordHistory"; |
| 18 const char kRecordHistoryIncludesSessionSync[] = | 19 const char kRecordHistoryIncludesSessionSync[] = |
| 19 "RecordHistoryIncludesSessionSync"; | 20 "RecordHistoryIncludesSessionSync"; |
| 20 const char kSafeSitesEnabled[] = "SafeSites"; | 21 const char kSafeSitesEnabled[] = "SafeSites"; |
| 21 const char kSigninAllowed[] = "SigninAllowed"; | 22 const char kSigninAllowed[] = "SigninAllowed"; |
| 22 const char kUserName[] = "UserName"; | 23 const char kUserName[] = "UserName"; |
| 23 | 24 |
| 24 const char kSupervisedUserPseudoEmail[] = "managed_user@localhost"; | 25 const char kSupervisedUserPseudoEmail[] = "managed_user@localhost"; |
| 25 | 26 |
| 26 const char kChildAccountSUID[] = "ChildAccountSUID"; | 27 const char kChildAccountSUID[] = "ChildAccountSUID"; |
| 27 | 28 |
| 28 const char kChromeAvatarIndex[] = "chrome-avatar-index"; | 29 const char kChromeAvatarIndex[] = "chrome-avatar-index"; |
| 29 const char kChromeOSAvatarIndex[] = "chromeos-avatar-index"; | 30 const char kChromeOSAvatarIndex[] = "chromeos-avatar-index"; |
| 30 | 31 |
| 31 const char kChromeOSPasswordData[] = "chromeos-password-data"; | 32 const char kChromeOSPasswordData[] = "chromeos-password-data"; |
| 32 | 33 |
| 33 } // namespace supervised_users | 34 } // namespace supervised_users |
| OLD | NEW |