| OLD | NEW |
| (Empty) |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "chrome/browser/managed_mode/managed_user_constants.h" | |
| 6 | |
| 7 namespace managed_users { | |
| 8 | |
| 9 const char kContentPackDefaultFilteringBehavior[] = | |
| 10 "ContentPackDefaultFilteringBehavior"; | |
| 11 const char kContentPackManualBehaviorHosts[] = "ContentPackManualBehaviorHosts"; | |
| 12 const char kContentPackManualBehaviorURLs[] = "ContentPackManualBehaviorURLs"; | |
| 13 const char kForceSafeSearch[] = "ForceSafeSearch"; | |
| 14 const char kSigninAllowed[] = "SigninAllowed"; | |
| 15 const char kUserName[] = "UserName"; | |
| 16 | |
| 17 } // namespace managed_users | |
| OLD | NEW |