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