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

Side by Side Diff: chrome/common/pref_names.cc

Issue 7481023: Adding notifications for new sync types. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merged with trunk. Created 9 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « chrome/common/pref_names.h ('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 (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "chrome/common/pref_names.h" 5 #include "chrome/common/pref_names.h"
6 6
7 namespace prefs { 7 namespace prefs {
8 8
9 // *************** PROFILE PREFS *************** 9 // *************** PROFILE PREFS ***************
10 // These are attached to the user profile 10 // These are attached to the user profile
(...skipping 1254 matching lines...) Expand 10 before | Expand all | Expand 10 after
1265 const char kSyncManaged[] = "sync.managed"; 1265 const char kSyncManaged[] = "sync.managed";
1266 1266
1267 // Boolean to prevent sync from automatically starting up. This is 1267 // Boolean to prevent sync from automatically starting up. This is
1268 // used when sync is disabled by the user via the privacy dashboard. 1268 // used when sync is disabled by the user via the privacy dashboard.
1269 const char kSyncSuppressStart[] = "sync.suppress_start"; 1269 const char kSyncSuppressStart[] = "sync.suppress_start";
1270 1270
1271 // Boolean to represent whether the legacy autofill profile data has been 1271 // Boolean to represent whether the legacy autofill profile data has been
1272 // migrated to the new model. 1272 // migrated to the new model.
1273 const char kAutofillProfileMigrated[] = "sync.autofill_migrated"; 1273 const char kAutofillProfileMigrated[] = "sync.autofill_migrated";
1274 1274
1275 // List of the currently acknowledged set of sync types, used to figure out
1276 // if a new sync type has rolled out so we can notify the user.
1277 const char kAcknowledgedSyncTypes[] = "sync.acknowledged_types";
1278
1275 // A string that can be used to restore sync encryption infrastructure on 1279 // A string that can be used to restore sync encryption infrastructure on
1276 // startup so that the user doesn't need to provide credentials on each start. 1280 // startup so that the user doesn't need to provide credentials on each start.
1277 const char kEncryptionBootstrapToken[] = "sync.encryption_bootstrap_token"; 1281 const char kEncryptionBootstrapToken[] = "sync.encryption_bootstrap_token";
1278 1282
1279 // Boolean tracking whether the user chose to specify a secondary encryption 1283 // Boolean tracking whether the user chose to specify a secondary encryption
1280 // passphrase. 1284 // passphrase.
1281 const char kSyncUsingSecondaryPassphrase[] = "sync.using_secondary_passphrase"; 1285 const char kSyncUsingSecondaryPassphrase[] = "sync.using_secondary_passphrase";
1282 1286
1283 // String that identifies the user logged into sync and other google services. 1287 // String that identifies the user logged into sync and other google services.
1284 const char kGoogleServicesUsername[] = "google.services.username"; 1288 const char kGoogleServicesUsername[] = "google.services.username";
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
1452 // Whether user-specified handlers for protocols and content types can be 1456 // Whether user-specified handlers for protocols and content types can be
1453 // specified. 1457 // specified.
1454 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; 1458 const char kCustomHandlersEnabled[] = "custom_handlers.enabled";
1455 1459
1456 // Integers that specify the policy refresh rate for device- and user-policy in 1460 // Integers that specify the policy refresh rate for device- and user-policy in
1457 // milliseconds. Not all values are meaningful, so it is clamped to a sane range 1461 // milliseconds. Not all values are meaningful, so it is clamped to a sane range
1458 // by the cloud policy subsystem. 1462 // by the cloud policy subsystem.
1459 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; 1463 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate";
1460 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; 1464 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate";
1461 } // namespace prefs 1465 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698