Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(160)

Side by Side Diff: components/sync_driver/pref_names.cc

Issue 1009673002: Remove enhanced bookmarks sync experiment (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkcr
Patch Set: . Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "components/sync_driver/pref_names.h" 5 #include "components/sync_driver/pref_names.h"
6 6
7 namespace sync_driver { 7 namespace sync_driver {
8 8
9 namespace prefs { 9 namespace prefs {
10 10
11 // Set to true when enhanced bookmarks experiment is enabled via Chrome sync.
12 const char kEnhancedBookmarksExperimentEnabled[] = "enhanced_bookmarks_enabled";
13
14 // Enhanced bookmarks extension id passed via Chrome sync.
15 const char kEnhancedBookmarksExtensionId[] = "enhanced_bookmarks_extension_id";
16
17 // 64-bit integer serialization of the base::Time when the last sync occurred. 11 // 64-bit integer serialization of the base::Time when the last sync occurred.
18 const char kSyncLastSyncedTime[] = "sync.last_synced_time"; 12 const char kSyncLastSyncedTime[] = "sync.last_synced_time";
19 13
20 // Boolean specifying whether the user finished setting up sync. 14 // Boolean specifying whether the user finished setting up sync.
21 const char kSyncHasSetupCompleted[] = "sync.has_setup_completed"; 15 const char kSyncHasSetupCompleted[] = "sync.has_setup_completed";
22 16
23 // Boolean specifying whether sync has an auth error. 17 // Boolean specifying whether sync has an auth error.
24 const char kSyncHasAuthError[] = "sync.has_auth_error"; 18 const char kSyncHasAuthError[] = "sync.has_auth_error";
25 19
26 // Boolean specifying whether to automatically sync all data types (including 20 // Boolean specifying whether to automatically sync all data types (including
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 92
99 // Stores how many times to try rollback before giving up. 93 // Stores how many times to try rollback before giving up.
100 const char kSyncRemainingRollbackTries[] = "sync.remaining_rollback_tries"; 94 const char kSyncRemainingRollbackTries[] = "sync.remaining_rollback_tries";
101 95
102 // Stores the timestamp of first sync. 96 // Stores the timestamp of first sync.
103 const char kSyncFirstSyncTime[] = "sync.first_sync_time"; 97 const char kSyncFirstSyncTime[] = "sync.first_sync_time";
104 98
105 } // namespace prefs 99 } // namespace prefs
106 100
107 } // namespace sync_driver 101 } // namespace sync_driver
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698