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 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
381 extern const char kWelcomeNotificationDismissed[]; | 381 extern const char kWelcomeNotificationDismissed[]; |
382 extern const char kWelcomeNotificationDismissedLocal[]; | 382 extern const char kWelcomeNotificationDismissedLocal[]; |
383 extern const char kWelcomeNotificationPreviouslyPoppedUp[]; | 383 extern const char kWelcomeNotificationPreviouslyPoppedUp[]; |
384 extern const char kWelcomeNotificationExpirationTimestamp[]; | 384 extern const char kWelcomeNotificationExpirationTimestamp[]; |
385 | 385 |
386 extern const char kFullscreenAllowed[]; | 386 extern const char kFullscreenAllowed[]; |
387 | 387 |
388 extern const char kLocalDiscoveryNotificationsEnabled[]; | 388 extern const char kLocalDiscoveryNotificationsEnabled[]; |
389 | 389 |
390 extern const char kPreferenceResetTime[]; | 390 extern const char kPreferenceResetTime[]; |
| 391 extern const char kProfileResetPromptMemento[]; |
391 | 392 |
392 extern const char kGCMChannelEnabled[]; | 393 extern const char kGCMChannelEnabled[]; |
393 extern const char kPushMessagingRegistrationCount[]; | 394 extern const char kPushMessagingRegistrationCount[]; |
394 | 395 |
395 extern const char kEasyUnlockEnabled[]; | 396 extern const char kEasyUnlockEnabled[]; |
396 extern const char kEasyUnlockShowTutorial[]; | 397 extern const char kEasyUnlockShowTutorial[]; |
397 extern const char kEasyUnlockPairing[]; | 398 extern const char kEasyUnlockPairing[]; |
398 extern const char kEasyUnlockAllowed[]; | 399 extern const char kEasyUnlockAllowed[]; |
399 | 400 |
400 extern const char kZeroSuggestCachedResults[]; | 401 extern const char kZeroSuggestCachedResults[]; |
(...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
818 #if defined(OS_ANDROID) | 819 #if defined(OS_ANDROID) |
819 extern const char kPartnerBookmarkMappings[]; | 820 extern const char kPartnerBookmarkMappings[]; |
820 #endif | 821 #endif |
821 | 822 |
822 extern const char kQuickCheckEnabled[]; | 823 extern const char kQuickCheckEnabled[]; |
823 extern const char kBrowserGuestModeEnabled[]; | 824 extern const char kBrowserGuestModeEnabled[]; |
824 | 825 |
825 } // namespace prefs | 826 } // namespace prefs |
826 | 827 |
827 #endif // CHROME_COMMON_PREF_NAMES_H_ | 828 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |