blob: 4c29dd8b3ade82b9ac20ec142d12dd6da5101904 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/common/renderer_preferences.h"
RendererPreferences::RendererPreferences()
: can_accept_load_drops(true),
should_antialias_text(true),
hinting(RENDERER_PREFERENCES_HINTING_SYSTEM_DEFAULT),
subpixel_rendering(
RENDERER_PREFERENCES_SUBPIXEL_RENDERING_SYSTEM_DEFAULT),
focus_ring_color(0),
thumb_active_color(0),
thumb_inactive_color(0),
track_color(0),
active_selection_bg_color(0),
active_selection_fg_color(0),
inactive_selection_bg_color(0),
inactive_selection_fg_color(0),
browser_handles_top_level_requests(false),
caret_blink_interval(0) {
}
|