| 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 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 extern const char kInstantEnabled[]; | 157 extern const char kInstantEnabled[]; |
| 158 extern const char kInstantEnabledOnce[]; | 158 extern const char kInstantEnabledOnce[]; |
| 159 extern const char kMultipleProfilePrefMigration[]; | 159 extern const char kMultipleProfilePrefMigration[]; |
| 160 extern const char kNetworkPredictionEnabled[]; | 160 extern const char kNetworkPredictionEnabled[]; |
| 161 extern const char kDefaultAppsInstallState[]; | 161 extern const char kDefaultAppsInstallState[]; |
| 162 #if defined(OS_CHROMEOS) | 162 #if defined(OS_CHROMEOS) |
| 163 extern const char kAudioMute[]; | 163 extern const char kAudioMute[]; |
| 164 extern const char kAudioVolumeDb[]; | 164 extern const char kAudioVolumeDb[]; |
| 165 extern const char kAudioVolumePercent[]; | 165 extern const char kAudioVolumePercent[]; |
| 166 extern const char kTapToClickEnabled[]; | 166 extern const char kTapToClickEnabled[]; |
| 167 extern const char kEnableTouchpadThreeFingerClick[]; |
| 167 extern const char kNaturalScroll[]; | 168 extern const char kNaturalScroll[]; |
| 168 extern const char kPrimaryMouseButtonRight[]; | 169 extern const char kPrimaryMouseButtonRight[]; |
| 169 extern const char kMouseSensitivity[]; | 170 extern const char kMouseSensitivity[]; |
| 170 extern const char kTouchpadSensitivity[]; | 171 extern const char kTouchpadSensitivity[]; |
| 171 extern const char kUse24HourClock[]; | 172 extern const char kUse24HourClock[]; |
| 172 extern const char kDisableGData[]; | 173 extern const char kDisableGData[]; |
| 173 extern const char kDisableGDataOverCellular[]; | 174 extern const char kDisableGDataOverCellular[]; |
| 174 extern const char kDisableGDataHostedFiles[]; | 175 extern const char kDisableGDataHostedFiles[]; |
| 175 // TODO(yusukes): Change "kLanguageABC" to "kABC". The current form is too long | 176 // TODO(yusukes): Change "kLanguageABC" to "kABC". The current form is too long |
| 176 // to remember and confusing. The prefs are actually for input methods and i18n | 177 // to remember and confusing. The prefs are actually for input methods and i18n |
| (...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 688 extern const char kPointsBufferedForVelocity[]; | 689 extern const char kPointsBufferedForVelocity[]; |
| 689 extern const char kRailBreakProportion[]; | 690 extern const char kRailBreakProportion[]; |
| 690 extern const char kRailStartProportion[]; | 691 extern const char kRailStartProportion[]; |
| 691 #endif | 692 #endif |
| 692 | 693 |
| 693 extern const char kInManagedMode[]; | 694 extern const char kInManagedMode[]; |
| 694 | 695 |
| 695 } // namespace prefs | 696 } // namespace prefs |
| 696 | 697 |
| 697 #endif // CHROME_COMMON_PREF_NAMES_H_ | 698 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |