| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
| 6 | 6 |
| 7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 #include "chrome/common/features.h" | 8 #include "chrome/common/features.h" |
| 9 #include "chrome/common/pref_font_webkit_names.h" | 9 #include "chrome/common/pref_font_webkit_names.h" |
| 10 | 10 |
| 11 namespace prefs { | 11 namespace prefs { |
| 12 | 12 |
| 13 // *************** PROFILE PREFS *************** | 13 // *************** PROFILE PREFS *************** |
| 14 // These are attached to the user profile | 14 // These are attached to the user profile |
| 15 | 15 |
| 16 #if defined(OS_CHROMEOS) && defined(ENABLE_APP_LIST) |
| 17 // A preference to keep list of ARC apps and its state. |
| 18 const char kArcApps[] = "arc.apps"; |
| 19 #endif |
| 16 | 20 |
| 17 // A bool pref that keeps whether the child status for this profile was already | 21 // A bool pref that keeps whether the child status for this profile was already |
| 18 // successfully checked via ChildAccountService. | 22 // successfully checked via ChildAccountService. |
| 19 const char kChildAccountStatusKnown[] = "child_account_status_known"; | 23 const char kChildAccountStatusKnown[] = "child_account_status_known"; |
| 20 | 24 |
| 21 // A string property indicating whether default apps should be installed | 25 // A string property indicating whether default apps should be installed |
| 22 // in this profile. Use the value "install" to enable defaults apps, or | 26 // in this profile. Use the value "install" to enable defaults apps, or |
| 23 // "noinstall" to disable them. This property is usually set in the | 27 // "noinstall" to disable them. This property is usually set in the |
| 24 // master_preferences and copied into the profile preferences on first run. | 28 // master_preferences and copied into the profile preferences on first run. |
| 25 // Defaults apps are installed only when creating a new profile. | 29 // Defaults apps are installed only when creating a new profile. |
| (...skipping 2136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2162 // Policy that indicates how to handle animated images. | 2166 // Policy that indicates how to handle animated images. |
| 2163 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2167 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
| 2164 #endif | 2168 #endif |
| 2165 | 2169 |
| 2166 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; | 2170 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; |
| 2167 | 2171 |
| 2168 const char kAllowDinosaurEasterEgg[] = | 2172 const char kAllowDinosaurEasterEgg[] = |
| 2169 "allow_dinosaur_easter_egg"; | 2173 "allow_dinosaur_easter_egg"; |
| 2170 | 2174 |
| 2171 } // namespace prefs | 2175 } // namespace prefs |
| OLD | NEW |