| 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 | 8 |
| 9 namespace prefs { | 9 namespace prefs { |
| 10 | 10 |
| (...skipping 972 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 983 const char kPluginsAlwaysAuthorize[] = "plugins.always_authorize"; | 983 const char kPluginsAlwaysAuthorize[] = "plugins.always_authorize"; |
| 984 | 984 |
| 985 #if defined(ENABLE_PLUGIN_INSTALLATION) | 985 #if defined(ENABLE_PLUGIN_INSTALLATION) |
| 986 // Dictionary holding plug-ins metadata. | 986 // Dictionary holding plug-ins metadata. |
| 987 const char kPluginsMetadata[] = "plugins.metadata"; | 987 const char kPluginsMetadata[] = "plugins.metadata"; |
| 988 | 988 |
| 989 // Last update time of plug-ins resource cache. | 989 // Last update time of plug-ins resource cache. |
| 990 const char kPluginsResourceCacheUpdate[] = "plugins.resource_cache_update"; | 990 const char kPluginsResourceCacheUpdate[] = "plugins.resource_cache_update"; |
| 991 #endif | 991 #endif |
| 992 | 992 |
| 993 #if defined(ENABLE_WEB_INTENTS) | |
| 994 // Boolean that is true if Web Intents is enabled. | |
| 995 const char kWebIntentsEnabled[] = "webintents.enabled"; | |
| 996 #endif | |
| 997 | |
| 998 // Boolean that indicates whether we should check if we are the default browser | 993 // Boolean that indicates whether we should check if we are the default browser |
| 999 // on start-up. | 994 // on start-up. |
| 1000 const char kCheckDefaultBrowser[] = "browser.check_default_browser"; | 995 const char kCheckDefaultBrowser[] = "browser.check_default_browser"; |
| 1001 | 996 |
| 1002 #if defined(OS_WIN) | 997 #if defined(OS_WIN) |
| 1003 // By default, setting Chrome as default during first run on Windows 8 will | 998 // By default, setting Chrome as default during first run on Windows 8 will |
| 1004 // trigger shutting down the current instance and spawning a new (Metro) | 999 // trigger shutting down the current instance and spawning a new (Metro) |
| 1005 // Chrome. This boolean preference supresses this behaviour. | 1000 // Chrome. This boolean preference supresses this behaviour. |
| 1006 const char kSuppressSwitchToMetroModeOnSetDefault[] = | 1001 const char kSuppressSwitchToMetroModeOnSetDefault[] = |
| 1007 "browser.suppress_switch_to_metro_mode_on_set_default"; | 1002 "browser.suppress_switch_to_metro_mode_on_set_default"; |
| (...skipping 1273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2281 const char kRLZDisabled[] = "rlz.disabled"; | 2276 const char kRLZDisabled[] = "rlz.disabled"; |
| 2282 #endif | 2277 #endif |
| 2283 | 2278 |
| 2284 #if defined(ENABLE_APP_LIST) | 2279 #if defined(ENABLE_APP_LIST) |
| 2285 // The directory in user data dir that contains the profile to be used with the | 2280 // The directory in user data dir that contains the profile to be used with the |
| 2286 // app launcher. | 2281 // app launcher. |
| 2287 extern const char kAppListProfile[] = "app_list.profile"; | 2282 extern const char kAppListProfile[] = "app_list.profile"; |
| 2288 #endif | 2283 #endif |
| 2289 | 2284 |
| 2290 } // namespace prefs | 2285 } // namespace prefs |
| OLD | NEW |