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