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 475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
486 extern const char kDevToolsOpenDocked[]; | 486 extern const char kDevToolsOpenDocked[]; |
487 extern const char kDevToolsSplitLocation[]; | 487 extern const char kDevToolsSplitLocation[]; |
488 | 488 |
489 extern const char kSyncLastSyncedTime[]; | 489 extern const char kSyncLastSyncedTime[]; |
490 extern const char kSyncHasSetupCompleted[]; | 490 extern const char kSyncHasSetupCompleted[]; |
491 extern const char kSyncKeepEverythingSynced[]; | 491 extern const char kSyncKeepEverythingSynced[]; |
492 extern const char kSyncBookmarks[]; | 492 extern const char kSyncBookmarks[]; |
493 extern const char kSyncPasswords[]; | 493 extern const char kSyncPasswords[]; |
494 extern const char kSyncPreferences[]; | 494 extern const char kSyncPreferences[]; |
495 extern const char kSyncAppNotifications[]; | 495 extern const char kSyncAppNotifications[]; |
| 496 extern const char kSyncAppSettings[]; |
496 extern const char kSyncApps[]; | 497 extern const char kSyncApps[]; |
497 extern const char kSyncAutofill[]; | 498 extern const char kSyncAutofill[]; |
498 extern const char kSyncAutofillProfile[]; | 499 extern const char kSyncAutofillProfile[]; |
499 extern const char kSyncThemes[]; | 500 extern const char kSyncThemes[]; |
500 extern const char kSyncTypedUrls[]; | 501 extern const char kSyncTypedUrls[]; |
501 extern const char kSyncExtensions[]; | 502 extern const char kSyncExtensions[]; |
502 extern const char kSyncExtensionSettings[]; | 503 extern const char kSyncExtensionSettings[]; |
503 extern const char kSyncManaged[]; | 504 extern const char kSyncManaged[]; |
504 extern const char kSyncSearchEngines[]; | 505 extern const char kSyncSearchEngines[]; |
505 extern const char kSyncSessions[]; | 506 extern const char kSyncSessions[]; |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
601 | 602 |
602 extern const char kDevicePolicyRefreshRate[]; | 603 extern const char kDevicePolicyRefreshRate[]; |
603 extern const char kUserPolicyRefreshRate[]; | 604 extern const char kUserPolicyRefreshRate[]; |
604 | 605 |
605 extern const char kRecoveryComponentVersion[]; | 606 extern const char kRecoveryComponentVersion[]; |
606 extern const char kComponentUpdaterState[]; | 607 extern const char kComponentUpdaterState[]; |
607 | 608 |
608 } // namespace prefs | 609 } // namespace prefs |
609 | 610 |
610 #endif // CHROME_COMMON_PREF_NAMES_H_ | 611 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |