OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
446 const char kPluginsLastInternalDirectory[] = "plugins.last_internal_directory"; | 446 const char kPluginsLastInternalDirectory[] = "plugins.last_internal_directory"; |
447 | 447 |
448 // List pref containing information (dictionaries) on plugins. | 448 // List pref containing information (dictionaries) on plugins. |
449 const char kPluginsPluginsList[] = "plugins.plugins_list"; | 449 const char kPluginsPluginsList[] = "plugins.plugins_list"; |
450 | 450 |
451 // List pref containing names of plugins that are disabled by policy. | 451 // List pref containing names of plugins that are disabled by policy. |
452 const char kPluginsPluginsBlacklist[] = "plugins.plugins_blacklist"; | 452 const char kPluginsPluginsBlacklist[] = "plugins.plugins_blacklist"; |
453 | 453 |
454 // When first shipped, the pdf plugin will be disabled by default. When we | 454 // When first shipped, the pdf plugin will be disabled by default. When we |
455 // enable it by default, we'll want to do so only once. | 455 // enable it by default, we'll want to do so only once. |
456 const char kPluginsEnabledInternalPDF[] = "plugins.enabled_internal_pdf"; | 456 const char kPluginsEnabledInternalPDF[] = "plugins.enabled_internal_pdf2"; |
457 | 457 |
458 // Boolean that indicates whether we should check if we are the default browser | 458 // Boolean that indicates whether we should check if we are the default browser |
459 // on start-up. | 459 // on start-up. |
460 const char kCheckDefaultBrowser[] = "browser.check_default_browser"; | 460 const char kCheckDefaultBrowser[] = "browser.check_default_browser"; |
461 | 461 |
462 #if defined(OS_MACOSX) | 462 #if defined(OS_MACOSX) |
463 // Boolean that indicates whether the application should show the info bar | 463 // Boolean that indicates whether the application should show the info bar |
464 // asking the user to set up automatic updates when Keystone promotion is | 464 // asking the user to set up automatic updates when Keystone promotion is |
465 // required. | 465 // required. |
466 const char kShowUpdatePromotionInfoBar[] = | 466 const char kShowUpdatePromotionInfoBar[] = |
(...skipping 541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1008 // String specifying the proxy server. For a specification of the expected | 1008 // String specifying the proxy server. For a specification of the expected |
1009 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). | 1009 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). |
1010 const char kProxyServer[] = "proxy.server"; | 1010 const char kProxyServer[] = "proxy.server"; |
1011 // URL to the proxy .pac file. | 1011 // URL to the proxy .pac file. |
1012 const char kProxyPacUrl[] = "proxy.pac_url"; | 1012 const char kProxyPacUrl[] = "proxy.pac_url"; |
1013 // String containing proxy bypass rules. For a specification of the | 1013 // String containing proxy bypass rules. For a specification of the |
1014 // expected syntax see net::ProxyBypassRules::ParseFromString(). | 1014 // expected syntax see net::ProxyBypassRules::ParseFromString(). |
1015 const char kProxyBypassList[] = "proxy.bypass_list"; | 1015 const char kProxyBypassList[] = "proxy.bypass_list"; |
1016 | 1016 |
1017 } // namespace prefs | 1017 } // namespace prefs |
OLD | NEW |