| 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 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 const wchar_t kExtensionToolbarSize[] = L"extensions.toolbarsize"; | 321 const wchar_t kExtensionToolbarSize[] = L"extensions.toolbarsize"; |
| 322 | 322 |
| 323 // Pref containing the directory for internal plugins as written to the plugins | 323 // Pref containing the directory for internal plugins as written to the plugins |
| 324 // list (below). | 324 // list (below). |
| 325 const wchar_t kPluginsLastInternalDirectory[] = | 325 const wchar_t kPluginsLastInternalDirectory[] = |
| 326 L"plugins.last_internal_directory"; | 326 L"plugins.last_internal_directory"; |
| 327 | 327 |
| 328 // List pref containing information (dictionaries) on plugins. | 328 // List pref containing information (dictionaries) on plugins. |
| 329 const wchar_t kPluginsPluginsList[] = L"plugins.plugins_list"; | 329 const wchar_t kPluginsPluginsList[] = L"plugins.plugins_list"; |
| 330 | 330 |
| 331 // When first shipped, the pdf plugin will be disabled by default. When we |
| 332 // enable it by default, we'll want to do so only once. |
| 333 const wchar_t kPluginsEnabledInternalPDF[] = L"plugins.enabled_internal_pdf"; |
| 334 |
| 331 // Boolean that indicates whether we should check if we are the default browser | 335 // Boolean that indicates whether we should check if we are the default browser |
| 332 // on start-up. | 336 // on start-up. |
| 333 const wchar_t kCheckDefaultBrowser[] = L"browser.check_default_browser"; | 337 const wchar_t kCheckDefaultBrowser[] = L"browser.check_default_browser"; |
| 334 | 338 |
| 335 #if defined(OS_MACOSX) | 339 #if defined(OS_MACOSX) |
| 336 // Boolean that indicates whether the application should show the info bar | 340 // Boolean that indicates whether the application should show the info bar |
| 337 // asking the user to set up automatic updates when Keystone promotion is | 341 // asking the user to set up automatic updates when Keystone promotion is |
| 338 // required. | 342 // required. |
| 339 const wchar_t kShowUpdatePromotionInfoBar[] = | 343 const wchar_t kShowUpdatePromotionInfoBar[] = |
| 340 L"browser.show_update_promotion_info_bar"; | 344 L"browser.show_update_promotion_info_bar"; |
| (...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 794 | 798 |
| 795 // The root URL of the cloud print service. | 799 // The root URL of the cloud print service. |
| 796 const wchar_t kCloudPrintServiceURL[] = L"cloud_print.service_url"; | 800 const wchar_t kCloudPrintServiceURL[] = L"cloud_print.service_url"; |
| 797 // The unique id for this instance of the cloud print proxy. | 801 // The unique id for this instance of the cloud print proxy. |
| 798 const wchar_t kCloudPrintProxyId[] = L"cloud_print.proxy_id"; | 802 const wchar_t kCloudPrintProxyId[] = L"cloud_print.proxy_id"; |
| 799 // The human-readable name of the Cloud Print proxy. User-supplied. | 803 // The human-readable name of the Cloud Print proxy. User-supplied. |
| 800 const wchar_t kCloudPrintProxyName[] = L"cloud_print.proxy_name"; | 804 const wchar_t kCloudPrintProxyName[] = L"cloud_print.proxy_name"; |
| 801 // The GAIA auth token (we may need to move it outside of prefs) | 805 // The GAIA auth token (we may need to move it outside of prefs) |
| 802 const wchar_t kCloudPrintAuthToken[] = L"cloud_print_auth_token"; | 806 const wchar_t kCloudPrintAuthToken[] = L"cloud_print_auth_token"; |
| 803 } // namespace prefs | 807 } // namespace prefs |
| OLD | NEW |