renderer_preferences.cc revision 68043e1e95eeb07d5cae7aca370b26518b0867d6
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
3// found in the LICENSE file.
4
5#include "content/public/common/renderer_preferences.h"
6
7#include "third_party/skia/include/core/SkColor.h"
8
9namespace {
10// The touchpad / touchscreen fling profiles are a matched set
11// determined via UX experimentation. Do not modify without
12// first discussing with rjkroege@chromium.org or
13// wjmaclean@chromium.org.
14const float kDefaultAlpha = -5.70762e+03f;
15const float kDefaultBeta = 1.72e+02f;
16const float kDefaultGamma = 3.7e+00f;
17}
18
19namespace content {
20
21RendererPreferences::RendererPreferences()
22    : can_accept_load_drops(true),
23      should_antialias_text(true),
24      hinting(RENDERER_PREFERENCES_HINTING_SYSTEM_DEFAULT),
25      use_autohinter(false),
26      use_bitmaps(false),
27      subpixel_rendering(
28          RENDERER_PREFERENCES_SUBPIXEL_RENDERING_SYSTEM_DEFAULT),
29      use_subpixel_positioning(false),
30      focus_ring_color(SkColorSetARGB(255, 229, 151, 0)),
31      thumb_active_color(SkColorSetRGB(244, 244, 244)),
32      thumb_inactive_color(SkColorSetRGB(234, 234, 234)),
33      track_color(SkColorSetRGB(211, 211, 211)),
34      active_selection_bg_color(SkColorSetRGB(30, 144, 255)),
35      active_selection_fg_color(SK_ColorWHITE),
36      inactive_selection_bg_color(SkColorSetRGB(200, 200, 200)),
37      inactive_selection_fg_color(SkColorSetRGB(50, 50, 50)),
38      browser_handles_non_local_top_level_requests(false),
39      browser_handles_all_top_level_requests(false),
40      caret_blink_interval(0.5),
41      use_custom_colors(true),
42      enable_referrers(true),
43      enable_do_not_track(false),
44      default_zoom_level(0),
45      report_frame_name_changes(false),
46      touchpad_fling_profile(3),
47      touchscreen_fling_profile(3),
48      tap_multiple_targets_strategy(TAP_MULTIPLE_TARGETS_STRATEGY_POPUP),
49      disable_client_blocked_error_page(false),
50      plugin_fullscreen_allowed(true) {
51  touchpad_fling_profile[0] = kDefaultAlpha;
52  touchpad_fling_profile[1] = kDefaultBeta;
53  touchpad_fling_profile[2] = kDefaultGamma;
54  touchscreen_fling_profile = touchpad_fling_profile;
55}
56
57RendererPreferences::~RendererPreferences() { }
58
59}  // namespace content
60