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 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
263 const char kWebKitSerifFontFamilyTraditionalHan[] = | 263 const char kWebKitSerifFontFamilyTraditionalHan[] = |
264 "webkit.webprefs.fonts.serif.Hant"; | 264 "webkit.webprefs.fonts.serif.Hant"; |
265 const char kWebKitSansSerifFontFamilyTraditionalHan[] = | 265 const char kWebKitSansSerifFontFamilyTraditionalHan[] = |
266 "webkit.webprefs.fonts.sansserif.Hant"; | 266 "webkit.webprefs.fonts.sansserif.Hant"; |
267 | 267 |
268 // WebKit preferences. | 268 // WebKit preferences. |
269 const char kWebKitWebSecurityEnabled[] = "webkit.webprefs.web_security_enabled"; | 269 const char kWebKitWebSecurityEnabled[] = "webkit.webprefs.web_security_enabled"; |
270 const char kWebKitDomPasteEnabled[] = "webkit.webprefs.dom_paste_enabled"; | 270 const char kWebKitDomPasteEnabled[] = "webkit.webprefs.dom_paste_enabled"; |
271 const char kWebKitShrinksStandaloneImagesToFit[] = | 271 const char kWebKitShrinksStandaloneImagesToFit[] = |
272 "webkit.webprefs.shrinks_standalone_images_to_fit"; | 272 "webkit.webprefs.shrinks_standalone_images_to_fit"; |
273 const char kWebKitInspectorSettings[] = "webkit.webprefs.inspector_settings"; | |
274 const char kWebKitUsesUniversalDetector[] = | 273 const char kWebKitUsesUniversalDetector[] = |
275 "webkit.webprefs.uses_universal_detector"; | 274 "webkit.webprefs.uses_universal_detector"; |
276 const char kWebKitTextAreasAreResizable[] = | 275 const char kWebKitTextAreasAreResizable[] = |
277 "webkit.webprefs.text_areas_are_resizable"; | 276 "webkit.webprefs.text_areas_are_resizable"; |
278 const char kWebKitJavaEnabled[] = "webkit.webprefs.java_enabled"; | 277 const char kWebKitJavaEnabled[] = "webkit.webprefs.java_enabled"; |
279 const char kWebkitTabsToLinks[] = "webkit.webprefs.tabs_to_links"; | 278 const char kWebkitTabsToLinks[] = "webkit.webprefs.tabs_to_links"; |
280 const char kWebKitAllowDisplayingInsecureContent[] = | 279 const char kWebKitAllowDisplayingInsecureContent[] = |
281 "webkit.webprefs.allow_displaying_insecure_content"; | 280 "webkit.webprefs.allow_displaying_insecure_content"; |
282 const char kWebKitAllowRunningInsecureContent[] = | 281 const char kWebKitAllowRunningInsecureContent[] = |
283 "webkit.webprefs.allow_running_insecure_content"; | 282 "webkit.webprefs.allow_running_insecure_content"; |
(...skipping 2030 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2314 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2313 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
2315 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2314 // given by the PartnerBookmarksProvider and either the user-visible renamed |
2316 // title or an empty string if the bookmark node was removed. | 2315 // title or an empty string if the bookmark node was removed. |
2317 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2316 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
2318 #endif | 2317 #endif |
2319 | 2318 |
2320 // Whether DNS Quick Check is disabled in proxy resolution. | 2319 // Whether DNS Quick Check is disabled in proxy resolution. |
2321 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2320 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2322 | 2321 |
2323 } // namespace prefs | 2322 } // namespace prefs |
OLD | NEW |