| 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 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 405 extern const char kProfileUsingDefaultName[]; | 405 extern const char kProfileUsingDefaultName[]; |
| 406 extern const char kProfileName[]; | 406 extern const char kProfileName[]; |
| 407 extern const char kProfileUsingDefaultAvatar[]; | 407 extern const char kProfileUsingDefaultAvatar[]; |
| 408 extern const char kProfileUsingGAIAAvatar[]; | 408 extern const char kProfileUsingGAIAAvatar[]; |
| 409 extern const char kSupervisedUserId[]; | 409 extern const char kSupervisedUserId[]; |
| 410 | 410 |
| 411 extern const char kProfileGAIAInfoUpdateTime[]; | 411 extern const char kProfileGAIAInfoUpdateTime[]; |
| 412 extern const char kProfileGAIAInfoPictureURL[]; | 412 extern const char kProfileGAIAInfoPictureURL[]; |
| 413 | 413 |
| 414 extern const char kProfileAvatarTutorialShown[]; | 414 extern const char kProfileAvatarTutorialShown[]; |
| 415 extern const char kProfileAvatarRightClickTutorialDismissed[]; | |
| 416 | 415 |
| 417 extern const char kInvertNotificationShown[]; | 416 extern const char kInvertNotificationShown[]; |
| 418 | 417 |
| 419 extern const char kPrintingEnabled[]; | 418 extern const char kPrintingEnabled[]; |
| 420 extern const char kPrintPreviewDisabled[]; | 419 extern const char kPrintPreviewDisabled[]; |
| 421 extern const char kPrintPreviewDefaultDestinationSelectionRules[]; | 420 extern const char kPrintPreviewDefaultDestinationSelectionRules[]; |
| 422 | 421 |
| 423 #if defined(OS_CHROMEOS) | 422 #if defined(OS_CHROMEOS) |
| 424 extern const char kPrintingDevices[]; | 423 extern const char kPrintingDevices[]; |
| 425 extern const char kRecommendedNativePrinters[]; | 424 extern const char kRecommendedNativePrinters[]; |
| (...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 911 extern const char kHistoryPageIOSPromoDismissed[]; | 910 extern const char kHistoryPageIOSPromoDismissed[]; |
| 912 #endif | 911 #endif |
| 913 | 912 |
| 914 extern const char kSettingsResetPromptPromptWave[]; | 913 extern const char kSettingsResetPromptPromptWave[]; |
| 915 extern const char kSettingsResetPromptLastTriggeredForDefaultSearch[]; | 914 extern const char kSettingsResetPromptLastTriggeredForDefaultSearch[]; |
| 916 extern const char kSettingsResetPromptLastTriggeredForStartupUrls[]; | 915 extern const char kSettingsResetPromptLastTriggeredForStartupUrls[]; |
| 917 extern const char kSettingsResetPromptLastTriggeredForHomepage[]; | 916 extern const char kSettingsResetPromptLastTriggeredForHomepage[]; |
| 918 } // namespace prefs | 917 } // namespace prefs |
| 919 | 918 |
| 920 #endif // CHROME_COMMON_PREF_NAMES_H_ | 919 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |