#include "components/sync_driver/pref_names.h"
namespace sync_driver {
namespace prefs {
const char kEnhancedBookmarksExperimentEnabled[] = "enhanced_bookmarks_enabled";
const char kEnhancedBookmarksExtensionId[] = "enhanced_bookmarks_extension_id";
const char kSyncLastSyncedTime[] = "sync.last_synced_time";
const char kSyncHasSetupCompleted[] = "sync.has_setup_completed";
const char kSyncHasAuthError[] = "sync.has_auth_error";
const char kSyncKeepEverythingSynced[] = "sync.keep_everything_synced";
const char kSyncAppList[] = "sync.app_list";
const char kSyncAppNotifications[] = "sync.app_notifications";
const char kSyncAppSettings[] = "sync.app_settings";
const char kSyncApps[] = "sync.apps";
const char kSyncAutofillProfile[] = "sync.autofill_profile";
const char kSyncAutofill[] = "sync.autofill";
const char kSyncBookmarks[] = "sync.bookmarks";
const char kSyncDictionary[] = "sync.dictionary";
const char kSyncExtensionSettings[] = "sync.extension_settings";
const char kSyncExtensions[] = "sync.extensions";
const char kSyncFaviconImages[] = "sync.favicon_images";
const char kSyncFaviconTracking[] = "sync.favicon_tracking";
const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives";
const char kSyncManagedUserSettings[] = "sync.managed_user_settings";
const char kSyncManagedUserSharedSettings[] =
"sync.managed_user_shared_settings";
const char kSyncManagedUsers[] = "sync.managed_users";
const char kSyncArticles[] = "sync.articles";
const char kSyncPasswords[] = "sync.passwords";
const char kSyncPreferences[] = "sync.preferences";
const char kSyncPriorityPreferences[] = "sync.priority_preferences";
const char kSyncSearchEngines[] = "sync.search_engines";
const char kSyncSessions[] = "sync.sessions";
const char kSyncSyncedNotificationAppInfo[] =
"sync.synced_notification_app_info";
const char kSyncSyncedNotifications[] = "sync.synced_notifications";
const char kSyncTabs[] = "sync.tabs";
const char kSyncThemes[] = "sync.themes";
const char kSyncTypedUrls[] = "sync.typed_urls";
const char kSyncManaged[] = "sync.managed";
const char kSyncSuppressStart[] = "sync.suppress_start";
const char kSyncEncryptionBootstrapToken[] = "sync.encryption_bootstrap_token";
const char kSyncKeystoreEncryptionBootstrapToken[] =
"sync.keystore_encryption_bootstrap_token";
const char kSyncUsingSecondaryPassphrase[] = "sync.using_secondary_passphrase";
const char kSyncAcknowledgedSyncTypes[] = "sync.acknowledged_types";
const char kSyncSessionsGUID[] = "sync.session_sync_guid";
#if defined(OS_CHROMEOS)
const char kSyncSpareBootstrapToken[] = "sync.spare_bootstrap_token";
#endif
}
}