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 2233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2505 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2508 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
2506 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2509 // given by the PartnerBookmarksProvider and either the user-visible renamed |
2507 // title or an empty string if the bookmark node was removed. | 2510 // title or an empty string if the bookmark node was removed. |
2508 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2511 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
2509 #endif | 2512 #endif |
2510 | 2513 |
2511 // Whether DNS Quick Check is disabled in proxy resolution. | 2514 // Whether DNS Quick Check is disabled in proxy resolution. |
2512 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2515 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2513 | 2516 |
2514 } // namespace prefs | 2517 } // namespace prefs |
OLD | NEW |