| 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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 extern const char kHttpServerProperties[]; | 155 extern const char kHttpServerProperties[]; |
| 156 extern const char kSpdyServers[]; | 156 extern const char kSpdyServers[]; |
| 157 extern const char kAlternateProtocolServers[]; | 157 extern const char kAlternateProtocolServers[]; |
| 158 extern const char kDisabledSchemes[]; | 158 extern const char kDisabledSchemes[]; |
| 159 #if defined(OS_ANDROID) || defined(OS_IOS) | 159 #if defined(OS_ANDROID) || defined(OS_IOS) |
| 160 extern const char kLastPolicyCheckTime[]; | 160 extern const char kLastPolicyCheckTime[]; |
| 161 #endif | 161 #endif |
| 162 extern const char kInstantUIZeroSuggestUrlPrefix[]; | 162 extern const char kInstantUIZeroSuggestUrlPrefix[]; |
| 163 extern const char kMultipleProfilePrefMigration[]; | 163 extern const char kMultipleProfilePrefMigration[]; |
| 164 extern const char kNetworkPredictionEnabled[]; | 164 extern const char kNetworkPredictionEnabled[]; |
| 165 extern const char kAllowNetworkPrediction[]; | 165 extern const char kNetworkPredictionOptions[]; |
| 166 extern const char kDefaultAppsInstallState[]; | 166 extern const char kDefaultAppsInstallState[]; |
| 167 extern const char kHideWebStoreIcon[]; | 167 extern const char kHideWebStoreIcon[]; |
| 168 #if defined(OS_CHROMEOS) | 168 #if defined(OS_CHROMEOS) |
| 169 extern const char kAudioDevicesMute[]; | 169 extern const char kAudioDevicesMute[]; |
| 170 extern const char kAudioDevicesVolumePercent[]; | 170 extern const char kAudioDevicesVolumePercent[]; |
| 171 extern const char kAudioMute[]; | 171 extern const char kAudioMute[]; |
| 172 extern const char kAudioVolumePercent[]; | 172 extern const char kAudioVolumePercent[]; |
| 173 extern const char kSpringChargerCheck[]; | 173 extern const char kSpringChargerCheck[]; |
| 174 extern const char kTapToClickEnabled[]; | 174 extern const char kTapToClickEnabled[]; |
| 175 extern const char kTapDraggingEnabled[]; | 175 extern const char kTapDraggingEnabled[]; |
| (...skipping 641 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 817 | 817 |
| 818 #if defined(OS_ANDROID) | 818 #if defined(OS_ANDROID) |
| 819 extern const char kPartnerBookmarkMappings[]; | 819 extern const char kPartnerBookmarkMappings[]; |
| 820 #endif | 820 #endif |
| 821 | 821 |
| 822 extern const char kQuickCheckEnabled[]; | 822 extern const char kQuickCheckEnabled[]; |
| 823 | 823 |
| 824 } // namespace prefs | 824 } // namespace prefs |
| 825 | 825 |
| 826 #endif // CHROME_COMMON_PREF_NAMES_H_ | 826 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |