| 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 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 "webkit.webprefs.fonts.serif.Hant"; | 309 "webkit.webprefs.fonts.serif.Hant"; |
| 310 const char kWebKitSansSerifFontFamilyTraditionalHan[] = | 310 const char kWebKitSansSerifFontFamilyTraditionalHan[] = |
| 311 "webkit.webprefs.fonts.sansserif.Hant"; | 311 "webkit.webprefs.fonts.sansserif.Hant"; |
| 312 | 312 |
| 313 // WebKit preferences. | 313 // WebKit preferences. |
| 314 const char kWebKitWebSecurityEnabled[] = "webkit.webprefs.web_security_enabled"; | 314 const char kWebKitWebSecurityEnabled[] = "webkit.webprefs.web_security_enabled"; |
| 315 const char kWebKitDomPasteEnabled[] = "webkit.webprefs.dom_paste_enabled"; | 315 const char kWebKitDomPasteEnabled[] = "webkit.webprefs.dom_paste_enabled"; |
| 316 const char kWebKitTextAreasAreResizable[] = | 316 const char kWebKitTextAreasAreResizable[] = |
| 317 "webkit.webprefs.text_areas_are_resizable"; | 317 "webkit.webprefs.text_areas_are_resizable"; |
| 318 const char kWebkitTabsToLinks[] = "webkit.webprefs.tabs_to_links"; | 318 const char kWebkitTabsToLinks[] = "webkit.webprefs.tabs_to_links"; |
| 319 const char kWebKitAllowDisplayingInsecureContent[] = | |
| 320 "webkit.webprefs.allow_displaying_insecure_content"; | |
| 321 const char kWebKitAllowRunningInsecureContent[] = | 319 const char kWebKitAllowRunningInsecureContent[] = |
| 322 "webkit.webprefs.allow_running_insecure_content"; | 320 "webkit.webprefs.allow_running_insecure_content"; |
| 323 #if defined(OS_ANDROID) | 321 #if defined(OS_ANDROID) |
| 324 const char kWebKitFontScaleFactor[] = "webkit.webprefs.font_scale_factor"; | 322 const char kWebKitFontScaleFactor[] = "webkit.webprefs.font_scale_factor"; |
| 325 const char kWebKitForceEnableZoom[] = "webkit.webprefs.force_enable_zoom"; | 323 const char kWebKitForceEnableZoom[] = "webkit.webprefs.force_enable_zoom"; |
| 326 const char kWebKitPasswordEchoEnabled[] = | 324 const char kWebKitPasswordEchoEnabled[] = |
| 327 "webkit.webprefs.password_echo_enabled"; | 325 "webkit.webprefs.password_echo_enabled"; |
| 328 #endif | 326 #endif |
| 329 | 327 |
| 330 const char kWebKitCommonScript[] = "Zyyy"; | 328 const char kWebKitCommonScript[] = "Zyyy"; |
| (...skipping 1920 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2251 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2249 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
| 2252 | 2250 |
| 2253 // A list of origin trial features to disable by policy. | 2251 // A list of origin trial features to disable by policy. |
| 2254 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2252 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
| 2255 | 2253 |
| 2256 // Policy that indicates the state of updates for the binary components. | 2254 // Policy that indicates the state of updates for the binary components. |
| 2257 const char kComponentUpdatesEnabled[] = | 2255 const char kComponentUpdatesEnabled[] = |
| 2258 "component_updates.component_updates_enabled"; | 2256 "component_updates.component_updates_enabled"; |
| 2259 | 2257 |
| 2260 } // namespace prefs | 2258 } // namespace prefs |
| OLD | NEW |