| 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 const wchar_t kWebKitShrinksStandaloneImagesToFit[] = | 89 const wchar_t kWebKitShrinksStandaloneImagesToFit[] = |
| 90 L"webkit.webprefs.shrinks_standalone_images_to_fit"; | 90 L"webkit.webprefs.shrinks_standalone_images_to_fit"; |
| 91 const wchar_t kWebKitInspectorSettings[] = | 91 const wchar_t kWebKitInspectorSettings[] = |
| 92 L"webkit.webprefs.inspector_settings"; | 92 L"webkit.webprefs.inspector_settings"; |
| 93 const wchar_t kWebKitUsesUniversalDetector[] = | 93 const wchar_t kWebKitUsesUniversalDetector[] = |
| 94 L"webkit.webprefs.uses_universal_detector"; | 94 L"webkit.webprefs.uses_universal_detector"; |
| 95 const wchar_t kWebKitTextAreasAreResizable[] = | 95 const wchar_t kWebKitTextAreasAreResizable[] = |
| 96 L"webkit.webprefs.text_areas_are_resizable"; | 96 L"webkit.webprefs.text_areas_are_resizable"; |
| 97 const wchar_t kWebKitJavaEnabled[] = | 97 const wchar_t kWebKitJavaEnabled[] = |
| 98 L"webkit.webprefs.java_enabled"; | 98 L"webkit.webprefs.java_enabled"; |
| 99 const wchar_t kWebkitTabsToLinks[] = L"webkit.webprefs.tabs_to_links"; |
| 99 | 100 |
| 100 // Boolean which specifies whether the bookmark bar is visible on all tabs. | 101 // Boolean which specifies whether the bookmark bar is visible on all tabs. |
| 101 const wchar_t kShowBookmarkBar[] = L"bookmark_bar.show_on_all_tabs"; | 102 const wchar_t kShowBookmarkBar[] = L"bookmark_bar.show_on_all_tabs"; |
| 102 | 103 |
| 103 // Boolean that is true if the password manager is on (will record new | 104 // Boolean that is true if the password manager is on (will record new |
| 104 // passwords and fill in known passwords). | 105 // passwords and fill in known passwords). |
| 105 const wchar_t kPasswordManagerEnabled[] = L"profile.password_manager_enabled"; | 106 const wchar_t kPasswordManagerEnabled[] = L"profile.password_manager_enabled"; |
| 106 | 107 |
| 107 // OBSOLETE. Boolean that is true if the form autofill is on (will record | 108 // OBSOLETE. Boolean that is true if the form autofill is on (will record |
| 108 // values entered in text inputs in forms and shows them in a popup when user | 109 // values entered in text inputs in forms and shows them in a popup when user |
| (...skipping 684 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 793 | 794 |
| 794 // The root URL of the cloud print service. | 795 // The root URL of the cloud print service. |
| 795 const wchar_t kCloudPrintServiceURL[] = L"cloud_print.service_url"; | 796 const wchar_t kCloudPrintServiceURL[] = L"cloud_print.service_url"; |
| 796 // The unique id for this instance of the cloud print proxy. | 797 // The unique id for this instance of the cloud print proxy. |
| 797 const wchar_t kCloudPrintProxyId[] = L"cloud_print.proxy_id"; | 798 const wchar_t kCloudPrintProxyId[] = L"cloud_print.proxy_id"; |
| 798 // The human-readable name of the Cloud Print proxy. User-supplied. | 799 // The human-readable name of the Cloud Print proxy. User-supplied. |
| 799 const wchar_t kCloudPrintProxyName[] = L"cloud_print.proxy_name"; | 800 const wchar_t kCloudPrintProxyName[] = L"cloud_print.proxy_name"; |
| 800 // The GAIA auth token (we may need to move it outside of prefs) | 801 // The GAIA auth token (we may need to move it outside of prefs) |
| 801 const wchar_t kCloudPrintAuthToken[] = L"cloud_print_auth_token"; | 802 const wchar_t kCloudPrintAuthToken[] = L"cloud_print_auth_token"; |
| 802 } // namespace prefs | 803 } // namespace prefs |
| OLD | NEW |