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

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

Issue 674633002: sync: add WIFI_CREDENTIALS protobuf, ModelType, and preference (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@local-master
Patch Set: fix error in get commit message Created 6 years, 1 month 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
« no previous file with comments | « components/sync_driver/pref_names.h ('k') | components/sync_driver/sync_prefs.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 const char kSyncSupervisedUserSettings[] = "sync.managed_user_settings"; 53 const char kSyncSupervisedUserSettings[] = "sync.managed_user_settings";
54 const char kSyncSupervisedUserSharedSettings[] = 54 const char kSyncSupervisedUserSharedSettings[] =
55 "sync.managed_user_shared_settings"; 55 "sync.managed_user_shared_settings";
56 const char kSyncSupervisedUsers[] = "sync.managed_users"; 56 const char kSyncSupervisedUsers[] = "sync.managed_users";
57 const char kSyncSyncedNotificationAppInfo[] = 57 const char kSyncSyncedNotificationAppInfo[] =
58 "sync.synced_notification_app_info"; 58 "sync.synced_notification_app_info";
59 const char kSyncSyncedNotifications[] = "sync.synced_notifications"; 59 const char kSyncSyncedNotifications[] = "sync.synced_notifications";
60 const char kSyncTabs[] = "sync.tabs"; 60 const char kSyncTabs[] = "sync.tabs";
61 const char kSyncThemes[] = "sync.themes"; 61 const char kSyncThemes[] = "sync.themes";
62 const char kSyncTypedUrls[] = "sync.typed_urls"; 62 const char kSyncTypedUrls[] = "sync.typed_urls";
63 const char kSyncWifiCredentials[] = "sync.wifi_credentials";
63 64
64 // Boolean used by enterprise configuration management in order to lock down 65 // Boolean used by enterprise configuration management in order to lock down
65 // sync. 66 // sync.
66 const char kSyncManaged[] = "sync.managed"; 67 const char kSyncManaged[] = "sync.managed";
67 68
68 // Boolean to prevent sync from automatically starting up. This is 69 // Boolean to prevent sync from automatically starting up. This is
69 // used when sync is disabled by the user via the privacy dashboard. 70 // used when sync is disabled by the user via the privacy dashboard.
70 const char kSyncSuppressStart[] = "sync.suppress_start"; 71 const char kSyncSuppressStart[] = "sync.suppress_start";
71 72
72 // A string that can be used to restore sync encryption infrastructure on 73 // A string that can be used to restore sync encryption infrastructure on
(...skipping 25 matching lines...) Expand all
98 99
99 // Stores how many times to try rollback before giving up. 100 // Stores how many times to try rollback before giving up.
100 const char kSyncRemainingRollbackTries[] = "sync.remaining_rollback_tries"; 101 const char kSyncRemainingRollbackTries[] = "sync.remaining_rollback_tries";
101 102
102 // Stores the timestamp of first sync. 103 // Stores the timestamp of first sync.
103 const char kSyncFirstSyncTime[] = "sync.first_sync_time"; 104 const char kSyncFirstSyncTime[] = "sync.first_sync_time";
104 105
105 } // namespace prefs 106 } // namespace prefs
106 107
107 } // namespace sync_driver 108 } // namespace sync_driver
OLDNEW
« no previous file with comments | « components/sync_driver/pref_names.h ('k') | components/sync_driver/sync_prefs.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698