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