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/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
9 | 9 |
10 namespace prefs { | 10 namespace prefs { |
11 | 11 |
12 // *************** PROFILE PREFS *************** | 12 // *************** PROFILE PREFS *************** |
13 // These are attached to the user profile | 13 // These are attached to the user profile |
14 | 14 |
| 15 #if defined(OS_CHROMEOS) |
| 16 // A preference to keep list of ARC apps and its state. |
| 17 const char kArcApps[] = "arc.apps"; |
| 18 #endif |
15 | 19 |
16 // A bool pref that keeps whether the child status for this profile was already | 20 // A bool pref that keeps whether the child status for this profile was already |
17 // successfully checked via ChildAccountService. | 21 // successfully checked via ChildAccountService. |
18 const char kChildAccountStatusKnown[] = "child_account_status_known"; | 22 const char kChildAccountStatusKnown[] = "child_account_status_known"; |
19 | 23 |
20 // A string property indicating whether default apps should be installed | 24 // A string property indicating whether default apps should be installed |
21 // in this profile. Use the value "install" to enable defaults apps, or | 25 // in this profile. Use the value "install" to enable defaults apps, or |
22 // "noinstall" to disable them. This property is usually set in the | 26 // "noinstall" to disable them. This property is usually set in the |
23 // master_preferences and copied into the profile preferences on first run. | 27 // master_preferences and copied into the profile preferences on first run. |
24 // Defaults apps are installed only when creating a new profile. | 28 // Defaults apps are installed only when creating a new profile. |
(...skipping 2159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2184 // Policy that indicates how to handle animated images. | 2188 // Policy that indicates how to handle animated images. |
2185 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2189 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
2186 #endif | 2190 #endif |
2187 | 2191 |
2188 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; | 2192 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; |
2189 | 2193 |
2190 const char kAllowDinosaurEasterEgg[] = | 2194 const char kAllowDinosaurEasterEgg[] = |
2191 "allow_dinosaur_easter_egg"; | 2195 "allow_dinosaur_easter_egg"; |
2192 | 2196 |
2193 } // namespace prefs | 2197 } // namespace prefs |
OLD | NEW |