| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include "chrome/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
| 6 | 6 |
| 7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 | 8 |
| 9 namespace prefs { | 9 namespace prefs { |
| 10 | 10 |
| (...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 408 #if defined(OS_CHROMEOS) | 408 #if defined(OS_CHROMEOS) |
| 409 // An integer pref to initially mute volume if 1. | 409 // An integer pref to initially mute volume if 1. |
| 410 const char kAudioMute[] = "settings.audio.mute"; | 410 const char kAudioMute[] = "settings.audio.mute"; |
| 411 | 411 |
| 412 // A double pref to set initial volume. | 412 // A double pref to set initial volume. |
| 413 const char kAudioVolume[] = "settings.audio.volume"; | 413 const char kAudioVolume[] = "settings.audio.volume"; |
| 414 | 414 |
| 415 // A boolean pref set to true if TapToClick is being done in browser. | 415 // A boolean pref set to true if TapToClick is being done in browser. |
| 416 const char kTapToClickEnabled[] = "settings.touchpad.enable_tap_to_click"; | 416 const char kTapToClickEnabled[] = "settings.touchpad.enable_tap_to_click"; |
| 417 | 417 |
| 418 // A boolean pref set to true if primary mouse button is the left button. |
| 419 const char kPrimaryMouseButtonRight[] = "settings.mouse.primary_right"; |
| 420 |
| 418 // A integer pref for the touchpad sensitivity. | 421 // A integer pref for the touchpad sensitivity. |
| 419 const char kTouchpadSensitivity[] = "settings.touchpad.sensitivity2"; | 422 const char kTouchpadSensitivity[] = "settings.touchpad.sensitivity2"; |
| 420 | 423 |
| 421 // A boolean pref set to true if time should be displayed in 24-hour clock. | 424 // A boolean pref set to true if time should be displayed in 24-hour clock. |
| 422 const char kUse24HourClock[] = "settings.clock.use_24hour_clock"; | 425 const char kUse24HourClock[] = "settings.clock.use_24hour_clock"; |
| 423 | 426 |
| 424 // A string pref set to the current input method. | 427 // A string pref set to the current input method. |
| 425 const char kLanguageCurrentInputMethod[] = | 428 const char kLanguageCurrentInputMethod[] = |
| 426 "settings.language.current_input_method"; | 429 "settings.language.current_input_method"; |
| 427 | 430 |
| (...skipping 1256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1684 | 1687 |
| 1685 // String that represents the recovery component last downloaded version. This | 1688 // String that represents the recovery component last downloaded version. This |
| 1686 // takes the usual 'a.b.c.d' notation. | 1689 // takes the usual 'a.b.c.d' notation. |
| 1687 const char kRecoveryComponentVersion[] = "recovery_component.version"; | 1690 const char kRecoveryComponentVersion[] = "recovery_component.version"; |
| 1688 | 1691 |
| 1689 // String that stores the component updater last known state. This is used for | 1692 // String that stores the component updater last known state. This is used for |
| 1690 // troubleshooting. | 1693 // troubleshooting. |
| 1691 const char kComponentUpdaterState[] = "component_updater.state"; | 1694 const char kComponentUpdaterState[] = "component_updater.state"; |
| 1692 | 1695 |
| 1693 } // namespace prefs | 1696 } // namespace prefs |
| OLD | NEW |