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

Side by Side Diff: components/sync/base/pref_names.cc

Issue 2942473002: [sync] Don't show an error icon when sync isn't signed in (Closed)
Patch Set: make isSyncConfirmationNeeded virtual, add comments Created 3 years, 6 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
« no previous file with comments | « components/browser_sync/profile_sync_service.cc ('k') | no next file » | 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/base/pref_names.h" 5 #include "components/sync/base/pref_names.h"
6 6
7 namespace syncer { 7 namespace syncer {
8 8
9 namespace prefs { 9 namespace prefs {
10 10
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 const char kSyncThemes[] = "sync.themes"; 64 const char kSyncThemes[] = "sync.themes";
65 const char kSyncTypedUrls[] = "sync.typed_urls"; 65 const char kSyncTypedUrls[] = "sync.typed_urls";
66 const char kSyncUserEvents[] = "sync.user_events"; 66 const char kSyncUserEvents[] = "sync.user_events";
67 const char kSyncWifiCredentials[] = "sync.wifi_credentials"; 67 const char kSyncWifiCredentials[] = "sync.wifi_credentials";
68 68
69 // Boolean used by enterprise configuration management in order to lock down 69 // Boolean used by enterprise configuration management in order to lock down
70 // sync. 70 // sync.
71 const char kSyncManaged[] = "sync.managed"; 71 const char kSyncManaged[] = "sync.managed";
72 72
73 // Boolean to prevent sync from automatically starting up. This is 73 // Boolean to prevent sync from automatically starting up. This is
74 // used when sync is disabled by the user via the privacy dashboard. 74 // used when sync is disabled by the user in sync settings.
75 const char kSyncSuppressStart[] = "sync.suppress_start"; 75 const char kSyncSuppressStart[] = "sync.suppress_start";
76 76
77 // A string that can be used to restore sync encryption infrastructure on 77 // A string that can be used to restore sync encryption infrastructure on
78 // startup so that the user doesn't need to provide credentials on each start. 78 // startup so that the user doesn't need to provide credentials on each start.
79 const char kSyncEncryptionBootstrapToken[] = "sync.encryption_bootstrap_token"; 79 const char kSyncEncryptionBootstrapToken[] = "sync.encryption_bootstrap_token";
80 80
81 // Same as kSyncEncryptionBootstrapToken, but derived from the keystore key, 81 // Same as kSyncEncryptionBootstrapToken, but derived from the keystore key,
82 // so we don't have to do a GetKey command at restart. 82 // so we don't have to do a GetKey command at restart.
83 const char kSyncKeystoreEncryptionBootstrapToken[] = 83 const char kSyncKeystoreEncryptionBootstrapToken[] =
84 "sync.keystore_encryption_bootstrap_token"; 84 "sync.keystore_encryption_bootstrap_token";
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 const char kEnableLocalSyncBackend[] = "sync.enable_local_sync_backend"; 129 const char kEnableLocalSyncBackend[] = "sync.enable_local_sync_backend";
130 130
131 // Specifies the local sync backend directory. The name is chosen to mimic 131 // Specifies the local sync backend directory. The name is chosen to mimic
132 // user-data-dir etc. This flag only matters if the enable-local-sync-backend 132 // user-data-dir etc. This flag only matters if the enable-local-sync-backend
133 // flag is present. 133 // flag is present.
134 const char kLocalSyncBackendDir[] = "sync.local_sync_backend_dir"; 134 const char kLocalSyncBackendDir[] = "sync.local_sync_backend_dir";
135 135
136 } // namespace prefs 136 } // namespace prefs
137 137
138 } // namespace syncer 138 } // namespace syncer
OLDNEW
« no previous file with comments | « components/browser_sync/profile_sync_service.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698