| 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 668 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 679 | 679 |
| 680 extern const char kWebAppCreateOnDesktop[]; | 680 extern const char kWebAppCreateOnDesktop[]; |
| 681 extern const char kWebAppCreateInAppsMenu[]; | 681 extern const char kWebAppCreateInAppsMenu[]; |
| 682 extern const char kWebAppCreateInQuickLaunchBar[]; | 682 extern const char kWebAppCreateInQuickLaunchBar[]; |
| 683 | 683 |
| 684 extern const char kGeolocationAccessToken[]; | 684 extern const char kGeolocationAccessToken[]; |
| 685 #if defined(OS_ANDROID) | 685 #if defined(OS_ANDROID) |
| 686 extern const char kGeolocationEnabled[]; | 686 extern const char kGeolocationEnabled[]; |
| 687 #endif | 687 #endif |
| 688 | 688 |
| 689 #if defined(ENABLE_GOOGLE_NOW) |
| 690 extern const char kGoogleGeolocationAccessEnabled[]; |
| 691 #endif |
| 692 |
| 689 extern const char kDefaultAudioCaptureDevice[]; | 693 extern const char kDefaultAudioCaptureDevice[]; |
| 690 extern const char kDefaultVideoCaptureDevice[]; | 694 extern const char kDefaultVideoCaptureDevice[]; |
| 691 | 695 |
| 692 extern const char kRemoteAccessHostFirewallTraversal[]; | 696 extern const char kRemoteAccessHostFirewallTraversal[]; |
| 693 extern const char kRemoteAccessHostRequireTwoFactor[]; | 697 extern const char kRemoteAccessHostRequireTwoFactor[]; |
| 694 extern const char kRemoteAccessHostDomain[]; | 698 extern const char kRemoteAccessHostDomain[]; |
| 695 extern const char kRemoteAccessHostTalkGadgetPrefix[]; | 699 extern const char kRemoteAccessHostTalkGadgetPrefix[]; |
| 696 extern const char kRemoteAccessHostRequireCurtain[]; | 700 extern const char kRemoteAccessHostRequireCurtain[]; |
| 697 | 701 |
| 698 extern const char kPrintPreviewStickySettings[]; | 702 extern const char kPrintPreviewStickySettings[]; |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 924 extern const char kAppListAppLaunchCount[]; | 928 extern const char kAppListAppLaunchCount[]; |
| 925 | 929 |
| 926 extern const char kModuleConflictBubbleShown[]; | 930 extern const char kModuleConflictBubbleShown[]; |
| 927 | 931 |
| 928 extern const char kDRMSalt[]; | 932 extern const char kDRMSalt[]; |
| 929 extern const char kEnableDRM[]; | 933 extern const char kEnableDRM[]; |
| 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 |