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 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
420 extern const char kProfileGAIAInfoPictureURL[]; | 420 extern const char kProfileGAIAInfoPictureURL[]; |
421 | 421 |
422 extern const char kProfileAvatarTutorialShown[]; | 422 extern const char kProfileAvatarTutorialShown[]; |
423 | 423 |
424 extern const char kInvertNotificationShown[]; | 424 extern const char kInvertNotificationShown[]; |
425 | 425 |
426 extern const char kPrintingEnabled[]; | 426 extern const char kPrintingEnabled[]; |
427 extern const char kPrintPreviewDisabled[]; | 427 extern const char kPrintPreviewDisabled[]; |
428 extern const char kPrintPreviewDefaultDestinationSelectionRules[]; | 428 extern const char kPrintPreviewDefaultDestinationSelectionRules[]; |
429 | 429 |
430 #if !defined(OS_CHROMEOS) && !defined(OS_ANDROID) && !defined(OS_IOS) | |
431 extern const char kPrintPreviewUseSystemDefaultPrinter[]; | |
432 #endif // !OS_CHROMEOS && !OS_ANDROID && !OS_IOS | |
Lei Zhang
2017/06/19 23:41:40
I wouldn't bother with the comment when the #if bl
rbpotter
2017/06/20 02:58:25
Done.
| |
433 | |
430 #if defined(OS_CHROMEOS) | 434 #if defined(OS_CHROMEOS) |
431 extern const char kPrintingDevices[]; | 435 extern const char kPrintingDevices[]; |
432 extern const char kRecommendedNativePrinters[]; | 436 extern const char kRecommendedNativePrinters[]; |
433 #endif // OS_CHROMEOS | 437 #endif // OS_CHROMEOS |
434 | 438 |
435 extern const char kDefaultSupervisedUserFilteringBehavior[]; | 439 extern const char kDefaultSupervisedUserFilteringBehavior[]; |
436 | 440 |
437 extern const char kSupervisedUserCreationAllowed[]; | 441 extern const char kSupervisedUserCreationAllowed[]; |
438 extern const char kSupervisedUsers[]; | 442 extern const char kSupervisedUsers[]; |
439 | 443 |
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
925 extern const char kClipboardLastModifiedTime[]; | 929 extern const char kClipboardLastModifiedTime[]; |
926 #endif | 930 #endif |
927 | 931 |
928 #if BUILDFLAG(ENABLE_OFFLINE_PAGES) | 932 #if BUILDFLAG(ENABLE_OFFLINE_PAGES) |
929 extern const char kOfflinePrefetchBackoff[]; | 933 extern const char kOfflinePrefetchBackoff[]; |
930 #endif | 934 #endif |
931 | 935 |
932 } // namespace prefs | 936 } // namespace prefs |
933 | 937 |
934 #endif // CHROME_COMMON_PREF_NAMES_H_ | 938 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |