| 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/macros.h" | 7 #include "base/macros.h" |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 #include "chrome/common/pref_font_webkit_names.h" | 9 #include "chrome/common/pref_font_webkit_names.h" |
| 10 | 10 |
| (...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 const char kWebKitFixedFontFamilyTraditionalHan[] = | 312 const char kWebKitFixedFontFamilyTraditionalHan[] = |
| 313 "webkit.webprefs.fonts.fixed.Hant"; | 313 "webkit.webprefs.fonts.fixed.Hant"; |
| 314 const char kWebKitSerifFontFamilyTraditionalHan[] = | 314 const char kWebKitSerifFontFamilyTraditionalHan[] = |
| 315 "webkit.webprefs.fonts.serif.Hant"; | 315 "webkit.webprefs.fonts.serif.Hant"; |
| 316 const char kWebKitSansSerifFontFamilyTraditionalHan[] = | 316 const char kWebKitSansSerifFontFamilyTraditionalHan[] = |
| 317 "webkit.webprefs.fonts.sansserif.Hant"; | 317 "webkit.webprefs.fonts.sansserif.Hant"; |
| 318 | 318 |
| 319 // WebKit preferences. | 319 // WebKit preferences. |
| 320 const char kWebKitWebSecurityEnabled[] = "webkit.webprefs.web_security_enabled"; | 320 const char kWebKitWebSecurityEnabled[] = "webkit.webprefs.web_security_enabled"; |
| 321 const char kWebKitDomPasteEnabled[] = "webkit.webprefs.dom_paste_enabled"; | 321 const char kWebKitDomPasteEnabled[] = "webkit.webprefs.dom_paste_enabled"; |
| 322 const char kWebKitUsesUniversalDetector[] = | |
| 323 "webkit.webprefs.uses_universal_detector"; | |
| 324 const char kWebKitTextAreasAreResizable[] = | 322 const char kWebKitTextAreasAreResizable[] = |
| 325 "webkit.webprefs.text_areas_are_resizable"; | 323 "webkit.webprefs.text_areas_are_resizable"; |
| 326 const char kWebkitTabsToLinks[] = "webkit.webprefs.tabs_to_links"; | 324 const char kWebkitTabsToLinks[] = "webkit.webprefs.tabs_to_links"; |
| 327 const char kWebKitAllowDisplayingInsecureContent[] = | 325 const char kWebKitAllowDisplayingInsecureContent[] = |
| 328 "webkit.webprefs.allow_displaying_insecure_content"; | 326 "webkit.webprefs.allow_displaying_insecure_content"; |
| 329 const char kWebKitAllowRunningInsecureContent[] = | 327 const char kWebKitAllowRunningInsecureContent[] = |
| 330 "webkit.webprefs.allow_running_insecure_content"; | 328 "webkit.webprefs.allow_running_insecure_content"; |
| 331 #if defined(OS_ANDROID) | 329 #if defined(OS_ANDROID) |
| 332 const char kWebKitFontScaleFactor[] = "webkit.webprefs.font_scale_factor"; | 330 const char kWebKitFontScaleFactor[] = "webkit.webprefs.font_scale_factor"; |
| 333 const char kWebKitForceEnableZoom[] = "webkit.webprefs.force_enable_zoom"; | 331 const char kWebKitForceEnableZoom[] = "webkit.webprefs.force_enable_zoom"; |
| (...skipping 1936 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2270 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2268 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
| 2271 | 2269 |
| 2272 // A list of origin trial features to disable by policy. | 2270 // A list of origin trial features to disable by policy. |
| 2273 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2271 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
| 2274 | 2272 |
| 2275 // Policy that indicates the state of updates for the binary components. | 2273 // Policy that indicates the state of updates for the binary components. |
| 2276 const char kComponentUpdatesEnabled[] = | 2274 const char kComponentUpdatesEnabled[] = |
| 2277 "component_updates.component_updates_enabled"; | 2275 "component_updates.component_updates_enabled"; |
| 2278 | 2276 |
| 2279 } // namespace prefs | 2277 } // namespace prefs |
| OLD | NEW |