| 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 936 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 947 const char kPluginsAlwaysAuthorize[] = "plugins.always_authorize"; | 947 const char kPluginsAlwaysAuthorize[] = "plugins.always_authorize"; |
| 948 | 948 |
| 949 #if defined(ENABLE_PLUGIN_INSTALLATION) | 949 #if defined(ENABLE_PLUGIN_INSTALLATION) |
| 950 // Dictionary holding plug-ins metadata. | 950 // Dictionary holding plug-ins metadata. |
| 951 const char kPluginsMetadata[] = "plugins.metadata"; | 951 const char kPluginsMetadata[] = "plugins.metadata"; |
| 952 | 952 |
| 953 // Last update time of plug-ins resource cache. | 953 // Last update time of plug-ins resource cache. |
| 954 const char kPluginsResourceCacheUpdate[] = "plugins.resource_cache_update"; | 954 const char kPluginsResourceCacheUpdate[] = "plugins.resource_cache_update"; |
| 955 #endif | 955 #endif |
| 956 | 956 |
| 957 #if defined(ENABLE_WEB_INTENTS) | |
| 958 // Boolean that is true if Web Intents is enabled. | |
| 959 const char kWebIntentsEnabled[] = "webintents.enabled"; | |
| 960 #endif | |
| 961 | |
| 962 // Boolean that indicates whether we should check if we are the default browser | 957 // Boolean that indicates whether we should check if we are the default browser |
| 963 // on start-up. | 958 // on start-up. |
| 964 const char kCheckDefaultBrowser[] = "browser.check_default_browser"; | 959 const char kCheckDefaultBrowser[] = "browser.check_default_browser"; |
| 965 | 960 |
| 966 #if defined(OS_WIN) | 961 #if defined(OS_WIN) |
| 967 // By default, setting Chrome as default during first run on Windows 8 will | 962 // By default, setting Chrome as default during first run on Windows 8 will |
| 968 // trigger shutting down the current instance and spawning a new (Metro) | 963 // trigger shutting down the current instance and spawning a new (Metro) |
| 969 // Chrome. This boolean preference supresses this behaviour. | 964 // Chrome. This boolean preference supresses this behaviour. |
| 970 const char kSuppressSwitchToMetroModeOnSetDefault[] = | 965 const char kSuppressSwitchToMetroModeOnSetDefault[] = |
| 971 "browser.suppress_switch_to_metro_mode_on_set_default"; | 966 "browser.suppress_switch_to_metro_mode_on_set_default"; |
| (...skipping 1268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2240 const char kRLZDisabled[] = "rlz.disabled"; | 2235 const char kRLZDisabled[] = "rlz.disabled"; |
| 2241 #endif | 2236 #endif |
| 2242 | 2237 |
| 2243 #if defined(ENABLE_APP_LIST) | 2238 #if defined(ENABLE_APP_LIST) |
| 2244 // The directory in user data dir that contains the profile to be used with the | 2239 // The directory in user data dir that contains the profile to be used with the |
| 2245 // app launcher. | 2240 // app launcher. |
| 2246 extern const char kAppListProfile[] = "app_list.profile"; | 2241 extern const char kAppListProfile[] = "app_list.profile"; |
| 2247 #endif | 2242 #endif |
| 2248 | 2243 |
| 2249 } // namespace prefs | 2244 } // namespace prefs |
| OLD | NEW |