| 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 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 const char kWebKitSerifFontFamilyTraditionalHan[] = | 273 const char kWebKitSerifFontFamilyTraditionalHan[] = |
| 274 "webkit.webprefs.fonts.serif.Hant"; | 274 "webkit.webprefs.fonts.serif.Hant"; |
| 275 const char kWebKitSansSerifFontFamilyTraditionalHan[] = | 275 const char kWebKitSansSerifFontFamilyTraditionalHan[] = |
| 276 "webkit.webprefs.fonts.sansserif.Hant"; | 276 "webkit.webprefs.fonts.sansserif.Hant"; |
| 277 | 277 |
| 278 // WebKit preferences. | 278 // WebKit preferences. |
| 279 const char kWebKitWebSecurityEnabled[] = "webkit.webprefs.web_security_enabled"; | 279 const char kWebKitWebSecurityEnabled[] = "webkit.webprefs.web_security_enabled"; |
| 280 const char kWebKitDomPasteEnabled[] = "webkit.webprefs.dom_paste_enabled"; | 280 const char kWebKitDomPasteEnabled[] = "webkit.webprefs.dom_paste_enabled"; |
| 281 const char kWebKitShrinksStandaloneImagesToFit[] = | 281 const char kWebKitShrinksStandaloneImagesToFit[] = |
| 282 "webkit.webprefs.shrinks_standalone_images_to_fit"; | 282 "webkit.webprefs.shrinks_standalone_images_to_fit"; |
| 283 const char kWebKitInspectorSettings[] = "webkit.webprefs.inspector_settings"; | |
| 284 const char kWebKitUsesUniversalDetector[] = | 283 const char kWebKitUsesUniversalDetector[] = |
| 285 "webkit.webprefs.uses_universal_detector"; | 284 "webkit.webprefs.uses_universal_detector"; |
| 286 const char kWebKitTextAreasAreResizable[] = | 285 const char kWebKitTextAreasAreResizable[] = |
| 287 "webkit.webprefs.text_areas_are_resizable"; | 286 "webkit.webprefs.text_areas_are_resizable"; |
| 288 const char kWebKitJavaEnabled[] = "webkit.webprefs.java_enabled"; | 287 const char kWebKitJavaEnabled[] = "webkit.webprefs.java_enabled"; |
| 289 const char kWebkitTabsToLinks[] = "webkit.webprefs.tabs_to_links"; | 288 const char kWebkitTabsToLinks[] = "webkit.webprefs.tabs_to_links"; |
| 290 const char kWebKitAllowDisplayingInsecureContent[] = | 289 const char kWebKitAllowDisplayingInsecureContent[] = |
| 291 "webkit.webprefs.allow_displaying_insecure_content"; | 290 "webkit.webprefs.allow_displaying_insecure_content"; |
| 292 const char kWebKitAllowRunningInsecureContent[] = | 291 const char kWebKitAllowRunningInsecureContent[] = |
| 293 "webkit.webprefs.allow_running_insecure_content"; | 292 "webkit.webprefs.allow_running_insecure_content"; |
| (...skipping 2042 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2336 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2335 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
| 2337 #endif | 2336 #endif |
| 2338 | 2337 |
| 2339 // Whether DNS Quick Check is disabled in proxy resolution. | 2338 // Whether DNS Quick Check is disabled in proxy resolution. |
| 2340 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2339 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
| 2341 | 2340 |
| 2342 // Whether Guest Mode is enabled within the browser. | 2341 // Whether Guest Mode is enabled within the browser. |
| 2343 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; | 2342 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; |
| 2344 | 2343 |
| 2345 } // namespace prefs | 2344 } // namespace prefs |
| OLD | NEW |