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