| 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 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 982 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 993 // Number of keywords. | 993 // Number of keywords. |
| 994 const char kNumKeywords[] = "user_experience_metrics.num_keywords"; | 994 const char kNumKeywords[] = "user_experience_metrics.num_keywords"; |
| 995 | 995 |
| 996 // Placeholder preference for disabling voice / video chat if it is ever added. | 996 // Placeholder preference for disabling voice / video chat if it is ever added. |
| 997 // Currently, this does not change any behavior. | 997 // Currently, this does not change any behavior. |
| 998 const char kDisableVideoAndChat[] = "disable_video_chat"; | 998 const char kDisableVideoAndChat[] = "disable_video_chat"; |
| 999 | 999 |
| 1000 // Whether Extensions are enabled. | 1000 // Whether Extensions are enabled. |
| 1001 const char kDisableExtensions[] = "extensions.disabled"; | 1001 const char kDisableExtensions[] = "extensions.disabled"; |
| 1002 | 1002 |
| 1003 // Whether the plugin finder in the default plugin is enabled. |
| 1004 const char kDisablePluginFinder[] = "plugins.disable_plugin_finder"; |
| 1005 |
| 1003 // Integer boolean representing the width (in pixels) of the container for | 1006 // Integer boolean representing the width (in pixels) of the container for |
| 1004 // browser actions. | 1007 // browser actions. |
| 1005 const char kBrowserActionContainerWidth[] = | 1008 const char kBrowserActionContainerWidth[] = |
| 1006 "extensions.browseractions.container.width"; | 1009 "extensions.browseractions.container.width"; |
| 1007 | 1010 |
| 1008 // A whitelist of extension ids the user can install: exceptions from the | 1011 // A whitelist of extension ids the user can install: exceptions from the |
| 1009 // following blacklist. This is controlled by the administrator. | 1012 // following blacklist. This is controlled by the administrator. |
| 1010 const char kExtensionInstallAllowList[] = "extensions.install.allowlist"; | 1013 const char kExtensionInstallAllowList[] = "extensions.install.allowlist"; |
| 1011 // A blacklist, containing extensions the user cannot install. This list can | 1014 // A blacklist, containing extensions the user cannot install. This list can |
| 1012 // conatin "*" meaning all extensions. This is controlled by the administrator. | 1015 // conatin "*" meaning all extensions. This is controlled by the administrator. |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1244 "profile.managed_default_content_settings.popups"; | 1247 "profile.managed_default_content_settings.popups"; |
| 1245 | 1248 |
| 1246 // Dictionary for storing the set of known background pages (keys are extension | 1249 // Dictionary for storing the set of known background pages (keys are extension |
| 1247 // IDs of background page owners, value is a boolean that is true if the user | 1250 // IDs of background page owners, value is a boolean that is true if the user |
| 1248 // needs to acknowledge this page. | 1251 // needs to acknowledge this page. |
| 1249 const char kKnownBackgroundPages[] = "background_pages.known"; | 1252 const char kKnownBackgroundPages[] = "background_pages.known"; |
| 1250 | 1253 |
| 1251 // Dictionary that maps URL schemes (protocols) to URL handlers. | 1254 // Dictionary that maps URL schemes (protocols) to URL handlers. |
| 1252 const char kRegisteredProtocolHandlers[] = "registered_protocol_handlers"; | 1255 const char kRegisteredProtocolHandlers[] = "registered_protocol_handlers"; |
| 1253 } // namespace prefs | 1256 } // namespace prefs |
| OLD | NEW |