| 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 // Constants for the names of various preferences, for easier changing. | 5 // Constants for the names of various preferences, for easier changing. |
| 6 | 6 |
| 7 #ifndef CHROME_COMMON_PREF_NAMES_H_ | 7 #ifndef CHROME_COMMON_PREF_NAMES_H_ |
| 8 #define CHROME_COMMON_PREF_NAMES_H_ | 8 #define CHROME_COMMON_PREF_NAMES_H_ |
| 9 | 9 |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 extern const wchar_t kWebKitWebSecurityEnabled[]; | 37 extern const wchar_t kWebKitWebSecurityEnabled[]; |
| 38 extern const wchar_t kWebKitJavascriptCanOpenWindowsAutomatically[]; | 38 extern const wchar_t kWebKitJavascriptCanOpenWindowsAutomatically[]; |
| 39 extern const wchar_t kWebKitLoadsImagesAutomatically[]; | 39 extern const wchar_t kWebKitLoadsImagesAutomatically[]; |
| 40 extern const wchar_t kWebKitPluginsEnabled[]; | 40 extern const wchar_t kWebKitPluginsEnabled[]; |
| 41 extern const wchar_t kWebKitDomPasteEnabled[]; | 41 extern const wchar_t kWebKitDomPasteEnabled[]; |
| 42 extern const wchar_t kWebKitShrinksStandaloneImagesToFit[]; | 42 extern const wchar_t kWebKitShrinksStandaloneImagesToFit[]; |
| 43 extern const wchar_t kWebKitInspectorSettings[]; | 43 extern const wchar_t kWebKitInspectorSettings[]; |
| 44 extern const wchar_t kWebKitUsesUniversalDetector[]; | 44 extern const wchar_t kWebKitUsesUniversalDetector[]; |
| 45 extern const wchar_t kWebKitTextAreasAreResizable[]; | 45 extern const wchar_t kWebKitTextAreasAreResizable[]; |
| 46 extern const wchar_t kWebKitJavaEnabled[]; | 46 extern const wchar_t kWebKitJavaEnabled[]; |
| 47 extern const wchar_t kWebkitTabsToLinks[]; |
| 47 extern const wchar_t kPasswordManagerEnabled[]; | 48 extern const wchar_t kPasswordManagerEnabled[]; |
| 48 extern const wchar_t kFormAutofillEnabled[]; // OBSOLETE | 49 extern const wchar_t kFormAutofillEnabled[]; // OBSOLETE |
| 49 extern const wchar_t kSafeBrowsingEnabled[]; | 50 extern const wchar_t kSafeBrowsingEnabled[]; |
| 50 extern const wchar_t kSearchSuggestEnabled[]; | 51 extern const wchar_t kSearchSuggestEnabled[]; |
| 51 extern const wchar_t kCookieBehavior[]; // OBSOLETE | 52 extern const wchar_t kCookieBehavior[]; // OBSOLETE |
| 52 extern const wchar_t kDefaultSearchProviderSearchURL[]; | 53 extern const wchar_t kDefaultSearchProviderSearchURL[]; |
| 53 extern const wchar_t kDefaultSearchProviderSuggestURL[]; | 54 extern const wchar_t kDefaultSearchProviderSuggestURL[]; |
| 54 extern const wchar_t kDefaultSearchProviderName[]; | 55 extern const wchar_t kDefaultSearchProviderName[]; |
| 55 extern const wchar_t kDefaultSearchProviderID[]; | 56 extern const wchar_t kDefaultSearchProviderID[]; |
| 56 extern const wchar_t kDefaultSearchProviderPrepopulateID[]; | 57 extern const wchar_t kDefaultSearchProviderPrepopulateID[]; |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 extern const wchar_t kLoginDatabaseMigrated[]; | 295 extern const wchar_t kLoginDatabaseMigrated[]; |
| 295 | 296 |
| 296 extern const wchar_t kCloudPrintServiceURL[]; | 297 extern const wchar_t kCloudPrintServiceURL[]; |
| 297 extern const wchar_t kCloudPrintProxyId[]; | 298 extern const wchar_t kCloudPrintProxyId[]; |
| 298 extern const wchar_t kCloudPrintProxyName[]; | 299 extern const wchar_t kCloudPrintProxyName[]; |
| 299 extern const wchar_t kCloudPrintAuthToken[]; | 300 extern const wchar_t kCloudPrintAuthToken[]; |
| 300 | 301 |
| 301 } // namespace prefs | 302 } // namespace prefs |
| 302 | 303 |
| 303 #endif // CHROME_COMMON_PREF_NAMES_H_ | 304 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |