| 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 594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 605 extern const char kSyncHistoryDeleteDirectives[]; | 605 extern const char kSyncHistoryDeleteDirectives[]; |
| 606 extern const char kSyncManagedUserSettings[]; | 606 extern const char kSyncManagedUserSettings[]; |
| 607 extern const char kSyncManagedUserSharedSettings[]; | 607 extern const char kSyncManagedUserSharedSettings[]; |
| 608 extern const char kSyncManagedUsers[]; | 608 extern const char kSyncManagedUsers[]; |
| 609 extern const char kSyncArticles[]; | 609 extern const char kSyncArticles[]; |
| 610 extern const char kSyncPasswords[]; | 610 extern const char kSyncPasswords[]; |
| 611 extern const char kSyncPreferences[]; | 611 extern const char kSyncPreferences[]; |
| 612 extern const char kSyncPriorityPreferences[]; | 612 extern const char kSyncPriorityPreferences[]; |
| 613 extern const char kSyncSearchEngines[]; | 613 extern const char kSyncSearchEngines[]; |
| 614 extern const char kSyncSessions[]; | 614 extern const char kSyncSessions[]; |
| 615 extern const char kSyncSyncedNotificationAppInfo[]; |
| 615 extern const char kSyncSyncedNotifications[]; | 616 extern const char kSyncSyncedNotifications[]; |
| 616 extern const char kSyncTabs[]; | 617 extern const char kSyncTabs[]; |
| 617 extern const char kSyncThemes[]; | 618 extern const char kSyncThemes[]; |
| 618 extern const char kSyncTypedUrls[]; | 619 extern const char kSyncTypedUrls[]; |
| 619 | 620 |
| 620 extern const char kSyncManaged[]; | 621 extern const char kSyncManaged[]; |
| 621 extern const char kSyncSuppressStart[]; | 622 extern const char kSyncSuppressStart[]; |
| 622 extern const char kGoogleServicesLastUsername[]; | 623 extern const char kGoogleServicesLastUsername[]; |
| 623 extern const char kGoogleServicesUserAccountId[]; | 624 extern const char kGoogleServicesUserAccountId[]; |
| 624 extern const char kGoogleServicesUsername[]; | 625 extern const char kGoogleServicesUsername[]; |
| (...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 934 #if defined(OS_WIN) | 935 #if defined(OS_WIN) |
| 935 extern const char kOsPasswordBlank[]; | 936 extern const char kOsPasswordBlank[]; |
| 936 extern const char kOsPasswordLastChanged[]; | 937 extern const char kOsPasswordLastChanged[]; |
| 937 #endif | 938 #endif |
| 938 | 939 |
| 939 extern const char kQuickCheckEnabled[]; | 940 extern const char kQuickCheckEnabled[]; |
| 940 | 941 |
| 941 } // namespace prefs | 942 } // namespace prefs |
| 942 | 943 |
| 943 #endif // CHROME_COMMON_PREF_NAMES_H_ | 944 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |