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 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
9 | 9 |
10 namespace prefs { | 10 namespace prefs { |
(...skipping 796 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
807 // is set by the component wallpaper picker, it is set to an empty string. | 807 // is set by the component wallpaper picker, it is set to an empty string. |
808 const char kCurrentWallpaperAppName[] = "wallpaper.app.name"; | 808 const char kCurrentWallpaperAppName[] = "wallpaper.app.name"; |
809 | 809 |
810 // List of mounted file systems via the File System Provider API. Used to | 810 // List of mounted file systems via the File System Provider API. Used to |
811 // restore them after a reboot. | 811 // restore them after a reboot. |
812 const char kFileSystemProviderMounted[] = "file_system_provider.mounted"; | 812 const char kFileSystemProviderMounted[] = "file_system_provider.mounted"; |
813 | 813 |
814 // A boolean pref set to true if the virtual keyboard should be enabled. | 814 // A boolean pref set to true if the virtual keyboard should be enabled. |
815 const char kTouchVirtualKeyboardEnabled[] = "ui.touch_virtual_keyboard_enabled"; | 815 const char kTouchVirtualKeyboardEnabled[] = "ui.touch_virtual_keyboard_enabled"; |
816 | 816 |
817 // An integer pref that controls the wake on wifi features that should be | 817 // A boolean pref that controls whether wake on SSID is enabled. |
818 // enabled. | 818 const char kWakeOnWifiSsid[] = "settings.internet.wake_on_wifi_ssid"; |
819 const char kWakeOnWiFiEnabled[] = "settings.internet.wake_on_wifi"; | |
820 | 819 |
821 #endif // defined(OS_CHROMEOS) | 820 #endif // defined(OS_CHROMEOS) |
822 | 821 |
823 // The disabled messages in IPC logging. | 822 // The disabled messages in IPC logging. |
824 const char kIpcDisabledMessages[] = "ipc_log_disabled_messages"; | 823 const char kIpcDisabledMessages[] = "ipc_log_disabled_messages"; |
825 | 824 |
826 // A boolean pref set to true if a Home button to open the Home pages should be | 825 // A boolean pref set to true if a Home button to open the Home pages should be |
827 // visible on the toolbar. | 826 // visible on the toolbar. |
828 const char kShowHomeButton[] = "browser.show_home_button"; | 827 const char kShowHomeButton[] = "browser.show_home_button"; |
829 | 828 |
(...skipping 1444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2274 const char kPasswordBubbleNopesCount[] = "password_bubble.nopes"; | 2273 const char kPasswordBubbleNopesCount[] = "password_bubble.nopes"; |
2275 | 2274 |
2276 // Last user's interaction with the password bubble. | 2275 // Last user's interaction with the password bubble. |
2277 const char kPasswordBubbleLastInteractions[] = "password_bubble.interactions"; | 2276 const char kPasswordBubbleLastInteractions[] = "password_bubble.interactions"; |
2278 | 2277 |
2279 // Boolean that indicates whether elevation is needed to recover Chrome upgrade. | 2278 // Boolean that indicates whether elevation is needed to recover Chrome upgrade. |
2280 const char kRecoveryComponentNeedsElevation[] = | 2279 const char kRecoveryComponentNeedsElevation[] = |
2281 "recovery_component.needs_elevation"; | 2280 "recovery_component.needs_elevation"; |
2282 | 2281 |
2283 } // namespace prefs | 2282 } // namespace prefs |
OLD | NEW |