OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 | 9 |
10 #include <stddef.h> | 10 #include <stddef.h> |
(...skipping 616 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
627 extern const char kSyncHistoryDeleteDirectives[]; | 627 extern const char kSyncHistoryDeleteDirectives[]; |
628 extern const char kSyncManagedUserSettings[]; | 628 extern const char kSyncManagedUserSettings[]; |
629 extern const char kSyncManagedUserSharedSettings[]; | 629 extern const char kSyncManagedUserSharedSettings[]; |
630 extern const char kSyncManagedUsers[]; | 630 extern const char kSyncManagedUsers[]; |
631 extern const char kSyncArticles[]; | 631 extern const char kSyncArticles[]; |
632 extern const char kSyncPasswords[]; | 632 extern const char kSyncPasswords[]; |
633 extern const char kSyncPreferences[]; | 633 extern const char kSyncPreferences[]; |
634 extern const char kSyncPriorityPreferences[]; | 634 extern const char kSyncPriorityPreferences[]; |
635 extern const char kSyncSearchEngines[]; | 635 extern const char kSyncSearchEngines[]; |
636 extern const char kSyncSessions[]; | 636 extern const char kSyncSessions[]; |
| 637 extern const char kSyncSyncedNotificationAppInfo[]; |
637 extern const char kSyncSyncedNotifications[]; | 638 extern const char kSyncSyncedNotifications[]; |
638 extern const char kSyncTabs[]; | 639 extern const char kSyncTabs[]; |
639 extern const char kSyncThemes[]; | 640 extern const char kSyncThemes[]; |
640 extern const char kSyncTypedUrls[]; | 641 extern const char kSyncTypedUrls[]; |
641 | 642 |
642 extern const char kSyncManaged[]; | 643 extern const char kSyncManaged[]; |
643 extern const char kSyncSuppressStart[]; | 644 extern const char kSyncSuppressStart[]; |
644 extern const char kGoogleServicesLastUsername[]; | 645 extern const char kGoogleServicesLastUsername[]; |
645 extern const char kGoogleServicesUserAccountId[]; | 646 extern const char kGoogleServicesUserAccountId[]; |
646 extern const char kGoogleServicesUsername[]; | 647 extern const char kGoogleServicesUsername[]; |
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
955 #if defined(OS_WIN) | 956 #if defined(OS_WIN) |
956 extern const char kOsPasswordBlank[]; | 957 extern const char kOsPasswordBlank[]; |
957 extern const char kOsPasswordLastChanged[]; | 958 extern const char kOsPasswordLastChanged[]; |
958 #endif | 959 #endif |
959 | 960 |
960 extern const char kQuickCheckEnabled[]; | 961 extern const char kQuickCheckEnabled[]; |
961 | 962 |
962 } // namespace prefs | 963 } // namespace prefs |
963 | 964 |
964 #endif // CHROME_COMMON_PREF_NAMES_H_ | 965 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |