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 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
419 extern const char kProfileGAIAInfoPictureURL[]; | 419 extern const char kProfileGAIAInfoPictureURL[]; |
420 | 420 |
421 extern const char kProfileAvatarTutorialShown[]; | 421 extern const char kProfileAvatarTutorialShown[]; |
422 | 422 |
423 extern const char kInvertNotificationShown[]; | 423 extern const char kInvertNotificationShown[]; |
424 | 424 |
425 extern const char kPrintingEnabled[]; | 425 extern const char kPrintingEnabled[]; |
426 extern const char kPrintPreviewDisabled[]; | 426 extern const char kPrintPreviewDisabled[]; |
427 extern const char kPrintPreviewDefaultDestinationSelectionRules[]; | 427 extern const char kPrintPreviewDefaultDestinationSelectionRules[]; |
428 | 428 |
| 429 #if !defined(OS_CHROMEOS) |
| 430 extern const char kPrintPreviewUseSystemDefaultPrinter[]; |
| 431 #endif // !OS_CHROMEOS |
| 432 |
429 #if defined(OS_CHROMEOS) | 433 #if defined(OS_CHROMEOS) |
430 extern const char kPrintingDevices[]; | 434 extern const char kPrintingDevices[]; |
431 extern const char kRecommendedNativePrinters[]; | 435 extern const char kRecommendedNativePrinters[]; |
432 #endif // OS_CHROMEOS | 436 #endif // OS_CHROMEOS |
433 | 437 |
434 extern const char kDefaultSupervisedUserFilteringBehavior[]; | 438 extern const char kDefaultSupervisedUserFilteringBehavior[]; |
435 | 439 |
436 extern const char kSupervisedUserCreationAllowed[]; | 440 extern const char kSupervisedUserCreationAllowed[]; |
437 extern const char kSupervisedUsers[]; | 441 extern const char kSupervisedUsers[]; |
438 | 442 |
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
924 extern const char kClipboardLastModifiedTime[]; | 928 extern const char kClipboardLastModifiedTime[]; |
925 #endif | 929 #endif |
926 | 930 |
927 #if BUILDFLAG(ENABLE_OFFLINE_PAGES) | 931 #if BUILDFLAG(ENABLE_OFFLINE_PAGES) |
928 extern const char kOfflinePrefetchBackoff[]; | 932 extern const char kOfflinePrefetchBackoff[]; |
929 #endif | 933 #endif |
930 | 934 |
931 } // namespace prefs | 935 } // namespace prefs |
932 | 936 |
933 #endif // CHROME_COMMON_PREF_NAMES_H_ | 937 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |