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