Hidehiko Abe | 33e9adf | 2017-09-13 06:12:23 | [diff] [blame^] | 1 | // Copyright 2017 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 | #ifndef COMPONENTS_ARC_ARC_PREFS_H_ |
| 6 | #define COMPONENTS_ARC_ARC_PREFS_H_ |
| 7 | |
| 8 | #include "components/arc/arc_export.h" |
| 9 | |
| 10 | namespace user_prefs { |
| 11 | class PrefRegistrySyncable; |
| 12 | } // namespace user_prefs |
| 13 | |
| 14 | namespace arc { |
| 15 | namespace prefs { |
| 16 | |
| 17 | // Sorted in lexicographical order. |
| 18 | ARC_EXPORT extern const char kArcActiveDirectoryPlayUserId[]; |
| 19 | ARC_EXPORT extern const char kArcApps[]; |
| 20 | ARC_EXPORT extern const char kArcBackupRestoreEnabled[]; |
| 21 | ARC_EXPORT extern const char kArcDataRemoveRequested[]; |
| 22 | ARC_EXPORT extern const char kArcEnabled[]; |
| 23 | ARC_EXPORT extern const char kArcPolicyComplianceReported[]; |
| 24 | ARC_EXPORT extern const char kArcTermsAccepted[]; |
| 25 | ARC_EXPORT extern const char kArcLocationServiceEnabled[]; |
| 26 | ARC_EXPORT extern const char kArcPackages[]; |
| 27 | ARC_EXPORT extern const char kArcPaiStarted[]; |
| 28 | ARC_EXPORT extern const char kArcSetNotificationsEnabledDeferred[]; |
| 29 | ARC_EXPORT extern const char kArcSignedIn[]; |
| 30 | ARC_EXPORT extern const char kArcCompatibleFilesystemChosen[]; |
| 31 | ARC_EXPORT extern const char kArcVoiceInteractionValuePropAccepted[]; |
| 32 | ARC_EXPORT extern const char kEcryptfsMigrationStrategy[]; |
| 33 | ARC_EXPORT extern const char kVoiceInteractionEnabled[]; |
| 34 | ARC_EXPORT extern const char kVoiceInteractionContextEnabled[]; |
| 35 | ARC_EXPORT extern const char kVoiceInteractionPrefSynced[]; |
| 36 | |
| 37 | void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry); |
| 38 | |
| 39 | } // namespace prefs |
| 40 | } // namespace arc |
| 41 | |
| 42 | #endif // COMPONENTS_ARC_ARC_PREFS_H_ |