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 788 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
799 // List of mounted file systems via the File System Provider API. Used to | 799 // List of mounted file systems via the File System Provider API. Used to |
800 // restore them after a reboot. | 800 // restore them after a reboot. |
801 const char kFileSystemProviderMounted[] = "file_system_provider.mounted"; | 801 const char kFileSystemProviderMounted[] = "file_system_provider.mounted"; |
802 | 802 |
803 // A boolean pref set to true if the virtual keyboard should be enabled. | 803 // A boolean pref set to true if the virtual keyboard should be enabled. |
804 const char kTouchVirtualKeyboardEnabled[] = "ui.touch_virtual_keyboard_enabled"; | 804 const char kTouchVirtualKeyboardEnabled[] = "ui.touch_virtual_keyboard_enabled"; |
805 | 805 |
806 // A boolean pref that controls whether wake on SSID is enabled. | 806 // A boolean pref that controls whether wake on SSID is enabled. |
807 const char kWakeOnWifiSsid[] = "settings.internet.wake_on_wifi_ssid"; | 807 const char kWakeOnWifiSsid[] = "settings.internet.wake_on_wifi_ssid"; |
808 | 808 |
| 809 // This is the policy CaptivePortalAuthenticationIgnoresProxy that allows to |
| 810 // open captive portal authentication pages in a separate window under |
| 811 // a temporary incognito profile ("signin profile" is used for this purpose), |
| 812 // which allows to bypass the user's proxy for captive portal authentication. |
| 813 const char kCaptivePortalAuthenticationIgnoresProxy[] = |
| 814 "proxy.captive_portal_ignores_proxy"; |
809 #endif // defined(OS_CHROMEOS) | 815 #endif // defined(OS_CHROMEOS) |
810 | 816 |
811 // The disabled messages in IPC logging. | 817 // The disabled messages in IPC logging. |
812 const char kIpcDisabledMessages[] = "ipc_log_disabled_messages"; | 818 const char kIpcDisabledMessages[] = "ipc_log_disabled_messages"; |
813 | 819 |
814 // A boolean pref set to true if a Home button to open the Home pages should be | 820 // A boolean pref set to true if a Home button to open the Home pages should be |
815 // visible on the toolbar. | 821 // visible on the toolbar. |
816 const char kShowHomeButton[] = "browser.show_home_button"; | 822 const char kShowHomeButton[] = "browser.show_home_button"; |
817 | 823 |
818 // A string value which saves short list of recently user selected encodings | 824 // A string value which saves short list of recently user selected encodings |
(...skipping 1452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2271 // (name and a list of clients that registered the whitelist). | 2277 // (name and a list of clients that registered the whitelist). |
2272 const char kRegisteredSupervisedUserWhitelists[] = | 2278 const char kRegisteredSupervisedUserWhitelists[] = |
2273 "supervised_users.whitelists"; | 2279 "supervised_users.whitelists"; |
2274 | 2280 |
2275 #if defined(ENABLE_EXTENSIONS) | 2281 #if defined(ENABLE_EXTENSIONS) |
2276 // Policy that indicates how to handle animated images. | 2282 // Policy that indicates how to handle animated images. |
2277 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2283 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
2278 #endif | 2284 #endif |
2279 | 2285 |
2280 } // namespace prefs | 2286 } // namespace prefs |
OLD | NEW |