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 #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 1781 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1792 // ChromeOS devices. This pref overrides |kAudioMute| but does not overwrite | 1792 // ChromeOS devices. This pref overrides |kAudioMute| but does not overwrite |
1793 // it, therefore when the policy is lifted the original mute state is restored. | 1793 // it, therefore when the policy is lifted the original mute state is restored. |
1794 const char kAudioOutputAllowed[] = "hardware.audio_output_enabled"; | 1794 const char kAudioOutputAllowed[] = "hardware.audio_output_enabled"; |
1795 | 1795 |
1796 // A pref holding the value of the policy used to disable capturing audio on | 1796 // A pref holding the value of the policy used to disable capturing audio on |
1797 // ChromeOS devices. | 1797 // ChromeOS devices. |
1798 const char kAudioCaptureAllowed[] = "hardware.audio_capture_enabled"; | 1798 const char kAudioCaptureAllowed[] = "hardware.audio_capture_enabled"; |
1799 | 1799 |
1800 // A dictionary that maps usernames to wallpaper properties. | 1800 // A dictionary that maps usernames to wallpaper properties. |
1801 const char kUsersWallpaperInfo[] = "user_wallpaper_info"; | 1801 const char kUsersWallpaperInfo[] = "user_wallpaper_info"; |
| 1802 |
| 1803 // Copy of owner swap mouse buttons option to use on login screen. |
| 1804 const char kOwnerPrimaryMouseButtonRight[] = "owner.mouse.primary_right"; |
| 1805 |
| 1806 // Copy of owner tap-to-click option to use on login screen. |
| 1807 const char kOwnerTapToClickEnabled[] = "owner.touchpad.enable_tap_to_click"; |
1802 #endif | 1808 #endif |
1803 | 1809 |
1804 // Whether there is a Flash version installed that supports clearing LSO data. | 1810 // Whether there is a Flash version installed that supports clearing LSO data. |
1805 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; | 1811 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; |
1806 | 1812 |
1807 // Whether we should show Pepper Flash-specific settings. | 1813 // Whether we should show Pepper Flash-specific settings. |
1808 const char kPepperFlashSettingsEnabled[] = | 1814 const char kPepperFlashSettingsEnabled[] = |
1809 "browser.pepper_flash_settings_enabled"; | 1815 "browser.pepper_flash_settings_enabled"; |
1810 | 1816 |
1811 // String which specifies where to store the disk cache. | 1817 // String which specifies where to store the disk cache. |
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2017 | 2023 |
2018 // Counts how many more times the 'profile on a network share' warning should be | 2024 // Counts how many more times the 'profile on a network share' warning should be |
2019 // shown to the user before the next silence period. | 2025 // shown to the user before the next silence period. |
2020 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; | 2026 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; |
2021 // Tracks the time of the last shown warning. Used to reset | 2027 // Tracks the time of the last shown warning. Used to reset |
2022 // |network_profile.warnings_left| after a silence period. | 2028 // |network_profile.warnings_left| after a silence period. |
2023 const char kNetworkProfileLastWarningTime[] = | 2029 const char kNetworkProfileLastWarningTime[] = |
2024 "network_profile.last_warning_time"; | 2030 "network_profile.last_warning_time"; |
2025 | 2031 |
2026 } // namespace prefs | 2032 } // namespace prefs |
OLD | NEW |