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 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
416 extern const char kProfileGAIAInfoUpdateTime[]; | 416 extern const char kProfileGAIAInfoUpdateTime[]; |
417 extern const char kProfileGAIAInfoPictureURL[]; | 417 extern const char kProfileGAIAInfoPictureURL[]; |
418 | 418 |
419 extern const char kProfileAvatarTutorialShown[]; | 419 extern const char kProfileAvatarTutorialShown[]; |
420 | 420 |
421 extern const char kInvertNotificationShown[]; | 421 extern const char kInvertNotificationShown[]; |
422 | 422 |
423 extern const char kPrintingEnabled[]; | 423 extern const char kPrintingEnabled[]; |
424 extern const char kPrintPreviewDisabled[]; | 424 extern const char kPrintPreviewDisabled[]; |
425 extern const char kPrintPreviewDefaultDestinationSelectionRules[]; | 425 extern const char kPrintPreviewDefaultDestinationSelectionRules[]; |
| 426 extern const char kUseSystemDefaultPrinterAsDefault[]; |
426 | 427 |
427 #if defined(OS_CHROMEOS) | 428 #if defined(OS_CHROMEOS) |
428 extern const char kPrintingDevices[]; | 429 extern const char kPrintingDevices[]; |
429 extern const char kRecommendedNativePrinters[]; | 430 extern const char kRecommendedNativePrinters[]; |
430 #endif // OS_CHROMEOS | 431 #endif // OS_CHROMEOS |
431 | 432 |
432 extern const char kDefaultSupervisedUserFilteringBehavior[]; | 433 extern const char kDefaultSupervisedUserFilteringBehavior[]; |
433 | 434 |
434 extern const char kSupervisedUserCreationAllowed[]; | 435 extern const char kSupervisedUserCreationAllowed[]; |
435 extern const char kSupervisedUsers[]; | 436 extern const char kSupervisedUsers[]; |
(...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
922 extern const char kClipboardLastModifiedTime[]; | 923 extern const char kClipboardLastModifiedTime[]; |
923 #endif | 924 #endif |
924 | 925 |
925 #if BUILDFLAG(ENABLE_OFFLINE_PAGES) | 926 #if BUILDFLAG(ENABLE_OFFLINE_PAGES) |
926 extern const char kOfflinePrefetchBackoff[]; | 927 extern const char kOfflinePrefetchBackoff[]; |
927 #endif | 928 #endif |
928 | 929 |
929 } // namespace prefs | 930 } // namespace prefs |
930 | 931 |
931 #endif // CHROME_COMMON_PREF_NAMES_H_ | 932 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |