Upstream version 11.39.250.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / renderer_preferences_util.cc
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 "chrome/browser/renderer_preferences_util.h"
6
7 #include "base/macros.h"
8 #include "base/prefs/pref_service.h"
9 #include "chrome/browser/profiles/profile.h"
10 #include "chrome/common/pref_names.h"
11 #include "content/public/common/renderer_preferences.h"
12 #include "third_party/skia/include/core/SkColor.h"
13
14 #if defined(OS_LINUX) || defined(OS_ANDROID)
15 #include "ui/gfx/font_render_params.h"
16 #endif
17
18 #if defined(TOOLKIT_VIEWS)
19 #include "chrome/browser/defaults.h"
20 #include "ui/views/controls/textfield/textfield.h"
21 #endif
22
23 #if defined(USE_AURA) && defined(OS_LINUX) && !defined(OS_CHROMEOS)
24 #include "chrome/browser/themes/theme_service.h"
25 #include "chrome/browser/themes/theme_service_factory.h"
26 #include "ui/views/linux_ui/linux_ui.h"
27 #endif
28
29 namespace renderer_preferences_util {
30
31 void UpdateFromSystemSettings(
32     content::RendererPreferences* prefs, Profile* profile) {
33   const PrefService* pref_service = profile->GetPrefs();
34   prefs->accept_languages = pref_service->GetString(prefs::kAcceptLanguages);
35   prefs->enable_referrers = pref_service->GetBoolean(prefs::kEnableReferrers);
36   prefs->enable_do_not_track =
37       pref_service->GetBoolean(prefs::kEnableDoNotTrack);
38   prefs->default_zoom_level = pref_service->GetDouble(prefs::kDefaultZoomLevel);
39
40 #if defined(USE_DEFAULT_RENDER_THEME)
41   prefs->focus_ring_color = SkColorSetRGB(0x4D, 0x90, 0xFE);
42 #if defined(OS_CHROMEOS)
43   // This color is 0x544d90fe modulated with 0xffffff.
44   prefs->active_selection_bg_color = SkColorSetRGB(0xCB, 0xE4, 0xFA);
45   prefs->active_selection_fg_color = SK_ColorBLACK;
46   prefs->inactive_selection_bg_color = SkColorSetRGB(0xEA, 0xEA, 0xEA);
47   prefs->inactive_selection_fg_color = SK_ColorBLACK;
48 #endif
49 #endif
50
51 #if defined(TOOLKIT_VIEWS)
52   prefs->caret_blink_interval = views::Textfield::GetCaretBlinkMs() / 1000.0;
53   if (browser_defaults::kShowLinkDisambiguationPopup) {
54     prefs->tap_multiple_targets_strategy =
55         content::TapMultipleTargetsStrategy::
56             TAP_MULTIPLE_TARGETS_STRATEGY_POPUP;
57   } else {
58     prefs->tap_multiple_targets_strategy =
59         content::TapMultipleTargetsStrategy::TAP_MULTIPLE_TARGETS_STRATEGY_NONE;
60   }
61 #endif
62
63 #if defined(USE_AURA) && defined(OS_LINUX) && !defined(OS_CHROMEOS)
64   views::LinuxUI* linux_ui = views::LinuxUI::instance();
65   if (linux_ui) {
66     if (ThemeServiceFactory::GetForProfile(profile)->UsingSystemTheme()) {
67       prefs->focus_ring_color = linux_ui->GetFocusRingColor();
68       prefs->thumb_active_color = linux_ui->GetThumbActiveColor();
69       prefs->thumb_inactive_color = linux_ui->GetThumbInactiveColor();
70       prefs->track_color = linux_ui->GetTrackColor();
71       prefs->active_selection_bg_color = linux_ui->GetActiveSelectionBgColor();
72       prefs->active_selection_fg_color = linux_ui->GetActiveSelectionFgColor();
73       prefs->inactive_selection_bg_color =
74         linux_ui->GetInactiveSelectionBgColor();
75       prefs->inactive_selection_fg_color =
76         linux_ui->GetInactiveSelectionFgColor();
77     }
78
79     // If we have a linux_ui object, set the caret blink interval regardless of
80     // whether we're in native theme mode.
81     prefs->caret_blink_interval = linux_ui->GetCursorBlinkInterval();
82   }
83 #endif
84
85 #if defined(OS_LINUX) || defined(OS_ANDROID)
86   CR_DEFINE_STATIC_LOCAL(const gfx::FontRenderParams, params,
87       (gfx::GetFontRenderParams(gfx::FontRenderParamsQuery(true), NULL)));
88   prefs->should_antialias_text = params.antialiasing;
89   prefs->use_subpixel_positioning = params.subpixel_positioning;
90   prefs->hinting = params.hinting;
91   prefs->use_autohinter = params.autohinter;
92   prefs->use_bitmaps = params.use_bitmaps;
93   prefs->subpixel_rendering = params.subpixel_rendering;
94 #endif
95
96 #if !defined(OS_MACOSX)
97   prefs->plugin_fullscreen_allowed =
98       pref_service->GetBoolean(prefs::kFullscreenAllowed);
99 #endif
100 }
101
102 }  // namespace renderer_preferences_util