OLD | NEW |
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 // Constants for the names of various preferences, for easier changing. | 5 // Constants for the names of various preferences, for easier changing. |
6 | 6 |
7 #ifndef CHROME_COMMON_PREF_NAMES_H_ | 7 #ifndef CHROME_COMMON_PREF_NAMES_H_ |
8 #define CHROME_COMMON_PREF_NAMES_H_ | 8 #define CHROME_COMMON_PREF_NAMES_H_ |
9 #pragma once | 9 #pragma once |
10 | 10 |
(...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
440 extern const char kSyncAutofillProfile[]; | 440 extern const char kSyncAutofillProfile[]; |
441 extern const char kSyncThemes[]; | 441 extern const char kSyncThemes[]; |
442 extern const char kSyncTypedUrls[]; | 442 extern const char kSyncTypedUrls[]; |
443 extern const char kSyncExtensions[]; | 443 extern const char kSyncExtensions[]; |
444 extern const char kSyncManaged[]; | 444 extern const char kSyncManaged[]; |
445 extern const char kSyncSuppressStart[]; | 445 extern const char kSyncSuppressStart[]; |
446 extern const char kGoogleServicesUsername[]; | 446 extern const char kGoogleServicesUsername[]; |
447 extern const char kSyncUsingSecondaryPassphrase[]; | 447 extern const char kSyncUsingSecondaryPassphrase[]; |
448 extern const char kEncryptionBootstrapToken[]; | 448 extern const char kEncryptionBootstrapToken[]; |
449 extern const char kAutofillProfileMigrated[]; | 449 extern const char kAutofillProfileMigrated[]; |
| 450 extern const char kAcknowledgedSyncTypes[]; |
450 | 451 |
451 extern const char kWebAppCreateOnDesktop[]; | 452 extern const char kWebAppCreateOnDesktop[]; |
452 extern const char kWebAppCreateInAppsMenu[]; | 453 extern const char kWebAppCreateInAppsMenu[]; |
453 extern const char kWebAppCreateInQuickLaunchBar[]; | 454 extern const char kWebAppCreateInQuickLaunchBar[]; |
454 | 455 |
455 extern const char kGeolocationAccessToken[]; | 456 extern const char kGeolocationAccessToken[]; |
456 extern const char kGeolocationDefaultContentSetting[]; | 457 extern const char kGeolocationDefaultContentSetting[]; |
457 extern const char kGeolocationContentSettings[]; | 458 extern const char kGeolocationContentSettings[]; |
458 | 459 |
459 extern const char kLoginDatabaseMigrated[]; | 460 extern const char kLoginDatabaseMigrated[]; |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
523 extern const char kCustomHandlersEnabled[]; | 524 extern const char kCustomHandlersEnabled[]; |
524 | 525 |
525 extern const char kUserCreatedLoginItem[]; | 526 extern const char kUserCreatedLoginItem[]; |
526 extern const char kBackgroundModeEnabled[]; | 527 extern const char kBackgroundModeEnabled[]; |
527 | 528 |
528 extern const char kDevicePolicyRefreshRate[]; | 529 extern const char kDevicePolicyRefreshRate[]; |
529 extern const char kUserPolicyRefreshRate[]; | 530 extern const char kUserPolicyRefreshRate[]; |
530 } // namespace prefs | 531 } // namespace prefs |
531 | 532 |
532 #endif // CHROME_COMMON_PREF_NAMES_H_ | 533 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |