| 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 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
| 9 | 9 |
| 10 namespace prefs { | 10 namespace prefs { |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 const char kWebKitUsesUniversalDetector[] = | 252 const char kWebKitUsesUniversalDetector[] = |
| 253 "webkit.webprefs.uses_universal_detector"; | 253 "webkit.webprefs.uses_universal_detector"; |
| 254 const char kWebKitTextAreasAreResizable[] = | 254 const char kWebKitTextAreasAreResizable[] = |
| 255 "webkit.webprefs.text_areas_are_resizable"; | 255 "webkit.webprefs.text_areas_are_resizable"; |
| 256 const char kWebKitJavaEnabled[] = "webkit.webprefs.java_enabled"; | 256 const char kWebKitJavaEnabled[] = "webkit.webprefs.java_enabled"; |
| 257 const char kWebkitTabsToLinks[] = "webkit.webprefs.tabs_to_links"; | 257 const char kWebkitTabsToLinks[] = "webkit.webprefs.tabs_to_links"; |
| 258 const char kWebKitAllowDisplayingInsecureContent[] = | 258 const char kWebKitAllowDisplayingInsecureContent[] = |
| 259 "webkit.webprefs.allow_displaying_insecure_content"; | 259 "webkit.webprefs.allow_displaying_insecure_content"; |
| 260 const char kWebKitAllowRunningInsecureContent[] = | 260 const char kWebKitAllowRunningInsecureContent[] = |
| 261 "webkit.webprefs.allow_running_insecure_content"; | 261 "webkit.webprefs.allow_running_insecure_content"; |
| 262 const char kWebKitEnableDeprecatedFeatures[] = |
| 263 "webkit.webprefs.enable_deprecated_features"; |
| 264 |
| 262 #if defined(OS_ANDROID) | 265 #if defined(OS_ANDROID) |
| 263 const char kWebKitFontScaleFactor[] = "webkit.webprefs.font_scale_factor"; | 266 const char kWebKitFontScaleFactor[] = "webkit.webprefs.font_scale_factor"; |
| 264 const char kWebKitForceEnableZoom[] = "webkit.webprefs.force_enable_zoom"; | 267 const char kWebKitForceEnableZoom[] = "webkit.webprefs.force_enable_zoom"; |
| 265 const char kWebKitPasswordEchoEnabled[] = | 268 const char kWebKitPasswordEchoEnabled[] = |
| 266 "webkit.webprefs.password_echo_enabled"; | 269 "webkit.webprefs.password_echo_enabled"; |
| 267 #endif | 270 #endif |
| 268 | 271 |
| 269 const char kWebKitCommonScript[] = "Zyyy"; | 272 const char kWebKitCommonScript[] = "Zyyy"; |
| 270 const char kWebKitStandardFontFamily[] = "webkit.webprefs.fonts.standard.Zyyy"; | 273 const char kWebKitStandardFontFamily[] = "webkit.webprefs.fonts.standard.Zyyy"; |
| 271 const char kWebKitFixedFontFamily[] = "webkit.webprefs.fonts.fixed.Zyyy"; | 274 const char kWebKitFixedFontFamily[] = "webkit.webprefs.fonts.fixed.Zyyy"; |
| (...skipping 2238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2510 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2513 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
| 2511 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2514 // given by the PartnerBookmarksProvider and either the user-visible renamed |
| 2512 // title or an empty string if the bookmark node was removed. | 2515 // title or an empty string if the bookmark node was removed. |
| 2513 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2516 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
| 2514 #endif | 2517 #endif |
| 2515 | 2518 |
| 2516 // Whether DNS Quick Check is disabled in proxy resolution. | 2519 // Whether DNS Quick Check is disabled in proxy resolution. |
| 2517 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2520 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
| 2518 | 2521 |
| 2519 } // namespace prefs | 2522 } // namespace prefs |
| OLD | NEW |