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 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
367 | 367 |
368 extern const char kInvertNotificationShown[]; | 368 extern const char kInvertNotificationShown[]; |
369 | 369 |
370 extern const char kPrintingEnabled[]; | 370 extern const char kPrintingEnabled[]; |
371 | 371 |
372 extern const char kDefaultSupervisedUserFilteringBehavior[]; | 372 extern const char kDefaultSupervisedUserFilteringBehavior[]; |
373 | 373 |
374 extern const char kSupervisedUserCreationAllowed[]; | 374 extern const char kSupervisedUserCreationAllowed[]; |
375 extern const char kSupervisedUsers[]; | 375 extern const char kSupervisedUsers[]; |
376 | 376 |
| 377 extern const char kProfileResetPromptMementoInProfilePrefs[]; |
| 378 |
377 extern const char kMessageCenterDisabledExtensionIds[]; | 379 extern const char kMessageCenterDisabledExtensionIds[]; |
378 extern const char kMessageCenterDisabledSystemComponentIds[]; | 380 extern const char kMessageCenterDisabledSystemComponentIds[]; |
379 extern const char kWelcomeNotificationDismissed[]; | 381 extern const char kWelcomeNotificationDismissed[]; |
380 extern const char kWelcomeNotificationDismissedLocal[]; | 382 extern const char kWelcomeNotificationDismissedLocal[]; |
381 extern const char kWelcomeNotificationPreviouslyPoppedUp[]; | 383 extern const char kWelcomeNotificationPreviouslyPoppedUp[]; |
382 extern const char kWelcomeNotificationExpirationTimestamp[]; | 384 extern const char kWelcomeNotificationExpirationTimestamp[]; |
383 | 385 |
384 extern const char kFullscreenAllowed[]; | 386 extern const char kFullscreenAllowed[]; |
385 | 387 |
386 extern const char kLocalDiscoveryNotificationsEnabled[]; | 388 extern const char kLocalDiscoveryNotificationsEnabled[]; |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
429 extern const char kVariationsSeedHash[]; | 431 extern const char kVariationsSeedHash[]; |
430 extern const char kVariationsSeedSignature[]; | 432 extern const char kVariationsSeedSignature[]; |
431 | 433 |
432 extern const char kDeviceOpenNetworkConfiguration[]; | 434 extern const char kDeviceOpenNetworkConfiguration[]; |
433 | 435 |
434 extern const char kProfileLastUsed[]; | 436 extern const char kProfileLastUsed[]; |
435 extern const char kProfilesLastActive[]; | 437 extern const char kProfilesLastActive[]; |
436 extern const char kProfilesNumCreated[]; | 438 extern const char kProfilesNumCreated[]; |
437 extern const char kProfileInfoCache[]; | 439 extern const char kProfileInfoCache[]; |
438 extern const char kProfileCreatedByVersion[]; | 440 extern const char kProfileCreatedByVersion[]; |
| 441 extern const char kProfileResetPromptMementosInLocalState[]; |
439 | 442 |
440 extern const char kStabilityPageLoadCount[]; | 443 extern const char kStabilityPageLoadCount[]; |
441 extern const char kStabilityRendererCrashCount[]; | 444 extern const char kStabilityRendererCrashCount[]; |
442 extern const char kStabilityExtensionRendererCrashCount[]; | 445 extern const char kStabilityExtensionRendererCrashCount[]; |
443 extern const char kStabilityRendererHangCount[]; | 446 extern const char kStabilityRendererHangCount[]; |
444 extern const char kStabilityChildProcessCrashCount[]; | 447 extern const char kStabilityChildProcessCrashCount[]; |
445 extern const char kStabilityOtherUserCrashCount[]; | 448 extern const char kStabilityOtherUserCrashCount[]; |
446 extern const char kStabilityKernelCrashCount[]; | 449 extern const char kStabilityKernelCrashCount[]; |
447 extern const char kStabilitySystemUncleanShutdownCount[]; | 450 extern const char kStabilitySystemUncleanShutdownCount[]; |
448 #if defined(OS_ANDROID) | 451 #if defined(OS_ANDROID) |
(...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
817 extern const char kPartnerBookmarkMappings[]; | 820 extern const char kPartnerBookmarkMappings[]; |
818 #endif | 821 #endif |
819 | 822 |
820 extern const char kQuickCheckEnabled[]; | 823 extern const char kQuickCheckEnabled[]; |
821 extern const char kBrowserGuestModeEnabled[]; | 824 extern const char kBrowserGuestModeEnabled[]; |
822 extern const char kBrowserAddPersonEnabled[]; | 825 extern const char kBrowserAddPersonEnabled[]; |
823 | 826 |
824 } // namespace prefs | 827 } // namespace prefs |
825 | 828 |
826 #endif // CHROME_COMMON_PREF_NAMES_H_ | 829 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |