Chromium Code Reviews| 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 665 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 676 | 676 |
| 677 extern const char kWebAppCreateOnDesktop[]; | 677 extern const char kWebAppCreateOnDesktop[]; |
| 678 extern const char kWebAppCreateInAppsMenu[]; | 678 extern const char kWebAppCreateInAppsMenu[]; |
| 679 extern const char kWebAppCreateInQuickLaunchBar[]; | 679 extern const char kWebAppCreateInQuickLaunchBar[]; |
| 680 | 680 |
| 681 extern const char kGeolocationAccessToken[]; | 681 extern const char kGeolocationAccessToken[]; |
| 682 #if defined(OS_ANDROID) | 682 #if defined(OS_ANDROID) |
| 683 extern const char kGeolocationEnabled[]; | 683 extern const char kGeolocationEnabled[]; |
| 684 #endif | 684 #endif |
| 685 | 685 |
| 686 extern const char kComponentGeolocationEnabled[]; | |
|
vadimt
2013/06/07 00:56:07
Should be under IFDEF?
robliao
2013/06/07 07:34:36
Done.
| |
| 687 | |
| 686 extern const char kDefaultAudioCaptureDevice[]; | 688 extern const char kDefaultAudioCaptureDevice[]; |
| 687 extern const char kDefaultVideoCaptureDevice[]; | 689 extern const char kDefaultVideoCaptureDevice[]; |
| 688 | 690 |
| 689 extern const char kRemoteAccessHostFirewallTraversal[]; | 691 extern const char kRemoteAccessHostFirewallTraversal[]; |
| 690 extern const char kRemoteAccessHostRequireTwoFactor[]; | 692 extern const char kRemoteAccessHostRequireTwoFactor[]; |
| 691 extern const char kRemoteAccessHostDomain[]; | 693 extern const char kRemoteAccessHostDomain[]; |
| 692 extern const char kRemoteAccessHostTalkGadgetPrefix[]; | 694 extern const char kRemoteAccessHostTalkGadgetPrefix[]; |
| 693 extern const char kRemoteAccessHostRequireCurtain[]; | 695 extern const char kRemoteAccessHostRequireCurtain[]; |
| 694 | 696 |
| 695 extern const char kPrintPreviewStickySettings[]; | 697 extern const char kPrintPreviewStickySettings[]; |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 919 extern const char kAppListLaunchCount[]; | 921 extern const char kAppListLaunchCount[]; |
| 920 extern const char kLastAppListAppLaunchPing[]; | 922 extern const char kLastAppListAppLaunchPing[]; |
| 921 extern const char kAppListAppLaunchCount[]; | 923 extern const char kAppListAppLaunchCount[]; |
| 922 | 924 |
| 923 extern const char kDRMSalt[]; | 925 extern const char kDRMSalt[]; |
| 924 extern const char kEnableDRM[]; | 926 extern const char kEnableDRM[]; |
| 925 | 927 |
| 926 } // namespace prefs | 928 } // namespace prefs |
| 927 | 929 |
| 928 #endif // CHROME_COMMON_PREF_NAMES_H_ | 930 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |