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 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
588 extern const char kWebAppCreateInQuickLaunchBar[]; | 588 extern const char kWebAppCreateInQuickLaunchBar[]; |
589 | 589 |
590 extern const char kGeolocationAccessToken[]; | 590 extern const char kGeolocationAccessToken[]; |
591 #if defined(OS_ANDROID) | 591 #if defined(OS_ANDROID) |
592 extern const char kGeolocationEnabled[]; | 592 extern const char kGeolocationEnabled[]; |
593 #endif | 593 #endif |
594 | 594 |
595 #if defined(ENABLE_GOOGLE_NOW) | 595 #if defined(ENABLE_GOOGLE_NOW) |
596 extern const char kGoogleGeolocationAccessEnabled[]; | 596 extern const char kGoogleGeolocationAccessEnabled[]; |
597 #endif | 597 #endif |
| 598 extern const char kGoogleNowLauncherEnabled[]; |
598 | 599 |
599 extern const char kDefaultAudioCaptureDevice[]; | 600 extern const char kDefaultAudioCaptureDevice[]; |
600 extern const char kDefaultVideoCaptureDevice[]; | 601 extern const char kDefaultVideoCaptureDevice[]; |
601 extern const char kMediaDeviceIdSalt[]; | 602 extern const char kMediaDeviceIdSalt[]; |
602 | 603 |
603 extern const char kPrintPreviewStickySettings[]; | 604 extern const char kPrintPreviewStickySettings[]; |
604 extern const char kCloudPrintRoot[]; | 605 extern const char kCloudPrintRoot[]; |
605 extern const char kCloudPrintDialogWidth[]; | 606 extern const char kCloudPrintDialogWidth[]; |
606 extern const char kCloudPrintDialogHeight[]; | 607 extern const char kCloudPrintDialogHeight[]; |
607 extern const char kCloudPrintSigninDialogWidth[]; | 608 extern const char kCloudPrintSigninDialogWidth[]; |
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
822 | 823 |
823 extern const char kRegisteredSupervisedUserWhitelists[]; | 824 extern const char kRegisteredSupervisedUserWhitelists[]; |
824 | 825 |
825 #if defined(ENABLE_EXTENSIONS) | 826 #if defined(ENABLE_EXTENSIONS) |
826 extern const char kAnimationPolicy[]; | 827 extern const char kAnimationPolicy[]; |
827 #endif | 828 #endif |
828 | 829 |
829 } // namespace prefs | 830 } // namespace prefs |
830 | 831 |
831 #endif // CHROME_COMMON_PREF_NAMES_H_ | 832 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |