| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 namespace prefs { | 7 namespace prefs { |
| 8 | 8 |
| 9 // *************** PROFILE PREFS *************** | 9 // *************** PROFILE PREFS *************** |
| 10 // These are attached to the user profile | 10 // These are attached to the user profile |
| (...skipping 790 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 801 // Number of keywords. | 801 // Number of keywords. |
| 802 const char kNumKeywords[] = "user_experience_metrics.num_keywords"; | 802 const char kNumKeywords[] = "user_experience_metrics.num_keywords"; |
| 803 | 803 |
| 804 // Placeholder preference for disabling voice / video chat if it is ever added. | 804 // Placeholder preference for disabling voice / video chat if it is ever added. |
| 805 // Currently, this does not change any behavior. | 805 // Currently, this does not change any behavior. |
| 806 const char kDisableVideoAndChat[] = "disable_video_chat"; | 806 const char kDisableVideoAndChat[] = "disable_video_chat"; |
| 807 | 807 |
| 808 // Whether Extensions are enabled. | 808 // Whether Extensions are enabled. |
| 809 const char kDisableExtensions[] = "extensions.disabled"; | 809 const char kDisableExtensions[] = "extensions.disabled"; |
| 810 | 810 |
| 811 // Boolean which specifies whether the Extension Shelf is visible on all tabs. | |
| 812 const char kShowExtensionShelf[] = "extensions.shelf.show_on_all_tabs"; | |
| 813 | |
| 814 // Integer boolean representing the width (in pixels) of the container for | 811 // Integer boolean representing the width (in pixels) of the container for |
| 815 // browser actions. | 812 // browser actions. |
| 816 const char kBrowserActionContainerWidth[] = | 813 const char kBrowserActionContainerWidth[] = |
| 817 "extensions.browseractions.container.width"; | 814 "extensions.browseractions.container.width"; |
| 818 | 815 |
| 819 // A whitelist of extension the user can install. This is controlled by the | 816 // A whitelist of extension the user can install. This is controlled by the |
| 820 // administrator. | 817 // administrator. |
| 821 const char kExtensionInstallAllowList[] = "extensions.install.allowlist"; | 818 const char kExtensionInstallAllowList[] = "extensions.install.allowlist"; |
| 822 // A blacklist, containing extensions the user cannot install. This is | 819 // A blacklist, containing extensions the user cannot install. This is |
| 823 // controlled by the administrator. This list should not be confused with | 820 // controlled by the administrator. This list should not be confused with |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 941 // String specifying the proxy server. For a specification of the expected | 938 // String specifying the proxy server. For a specification of the expected |
| 942 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). | 939 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). |
| 943 const char kProxyServer[] = "proxy.server"; | 940 const char kProxyServer[] = "proxy.server"; |
| 944 // URL to the proxy .pac file. | 941 // URL to the proxy .pac file. |
| 945 const char kProxyPacUrl[] = "proxy.pac_url"; | 942 const char kProxyPacUrl[] = "proxy.pac_url"; |
| 946 // String containing proxy bypass rules. For a specification of the | 943 // String containing proxy bypass rules. For a specification of the |
| 947 // expected syntax see net::ProxyBypassRules::ParseFromString(). | 944 // expected syntax see net::ProxyBypassRules::ParseFromString(). |
| 948 const char kProxyBypassList[] = "proxy.bypass_list"; | 945 const char kProxyBypassList[] = "proxy.bypass_list"; |
| 949 | 946 |
| 950 } // namespace prefs | 947 } // namespace prefs |
| OLD | NEW |