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/macros.h" | 7 #include "base/macros.h" |
8 #include "build/build_config.h" | 8 #include "build/build_config.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) | 16 #if defined(OS_CHROMEOS) && defined(ENABLE_APP_LIST) |
17 // A preference to keep list of Android apps and their state. | 17 // A preference to keep list of Android apps and their state. |
18 const char kArcApps[] = "arc.apps"; | 18 const char kArcApps[] = "arc.apps"; |
| 19 // A preference to store backup and restore state for Android apps. |
| 20 const char kArcBackupRestoreEnabled[] = "arc.backup_restore.enabled"; |
19 // A preference to keep Android apps enabled state. | 21 // A preference to keep Android apps enabled state. |
20 const char kArcEnabled[] = "arc.enabled"; | 22 const char kArcEnabled[] = "arc.enabled"; |
21 // A preference to keep list of Android packages and their infomation. | 23 // A preference to keep list of Android packages and their infomation. |
22 const char kArcPackages[] = "arc.packages"; | 24 const char kArcPackages[] = "arc.packages"; |
23 // A preference to keep deferred requests of setting notifications enabled flag. | 25 // A preference to keep deferred requests of setting notifications enabled flag. |
24 const char kArcSetNotificationsEnabledDeferred[] = | 26 const char kArcSetNotificationsEnabledDeferred[] = |
25 "arc.set_notifications_enabled_deferred"; | 27 "arc.set_notifications_enabled_deferred"; |
26 // A preference that indicates status of Android sign-in. | 28 // A preference that indicates status of Android sign-in. |
27 const char kArcSignedIn[] = "arc.signedin"; | 29 const char kArcSignedIn[] = "arc.signedin"; |
28 #endif | 30 #endif |
(...skipping 2226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2255 #endif | 2257 #endif |
2256 | 2258 |
2257 // The base64-encoded representation of the public key to use to validate origin | 2259 // The base64-encoded representation of the public key to use to validate origin |
2258 // trial token signatures. | 2260 // trial token signatures. |
2259 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2261 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
2260 | 2262 |
2261 // A list of origin trial features to disable by policy. | 2263 // A list of origin trial features to disable by policy. |
2262 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2264 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
2263 | 2265 |
2264 } // namespace prefs | 2266 } // namespace prefs |
OLD | NEW |