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