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 "base/base_paths.h" | 5 #include "base/base_paths.h" |
6 #include "base/command_line.h" | 6 #include "base/command_line.h" |
7 #include "base/debug/crash_logging.h" | 7 #include "base/debug/crash_logging.h" |
8 #include "base/debug/debugger.h" | 8 #include "base/debug/debugger.h" |
9 #include "base/files/file_path.h" | 9 #include "base/files/file_path.h" |
10 #include "base/i18n/rtl.h" | 10 #include "base/i18n/rtl.h" |
(...skipping 11 matching lines...) Expand all Loading... |
22 #include "content/public/plugin/content_plugin_client.h" | 22 #include "content/public/plugin/content_plugin_client.h" |
23 #include "ipc/ipc_sender.h" | 23 #include "ipc/ipc_sender.h" |
24 #include "ppapi/proxy/plugin_globals.h" | 24 #include "ppapi/proxy/plugin_globals.h" |
25 #include "ppapi/proxy/proxy_module.h" | 25 #include "ppapi/proxy/proxy_module.h" |
26 #include "ui/base/ui_base_switches.h" | 26 #include "ui/base/ui_base_switches.h" |
27 | 27 |
28 #if defined(OS_WIN) | 28 #if defined(OS_WIN) |
29 #include "base/win/win_util.h" | 29 #include "base/win/win_util.h" |
30 #include "base/win/windows_version.h" | 30 #include "base/win/windows_version.h" |
31 #include "content/child/dwrite_font_proxy/dwrite_font_proxy_init_win.h" | 31 #include "content/child/dwrite_font_proxy/dwrite_font_proxy_init_win.h" |
32 #include "content/child/font_warmup_win.h" | |
33 #include "content/public/common/dwrite_font_platform_win.h" | |
34 #include "sandbox/win/src/sandbox.h" | 32 #include "sandbox/win/src/sandbox.h" |
35 #include "third_party/WebKit/public/web/win/WebFontRendering.h" | 33 #include "third_party/WebKit/public/web/win/WebFontRendering.h" |
36 #include "third_party/skia/include/ports/SkTypeface_win.h" | 34 #include "third_party/skia/include/ports/SkTypeface_win.h" |
37 #include "ui/gfx/win/direct_write.h" | 35 #include "ui/gfx/win/direct_write.h" |
38 #include "ui/gfx/win/dpi.h" | 36 #include "ui/gfx/win/dpi.h" |
39 #endif | 37 #endif |
40 | 38 |
41 #if defined(OS_CHROMEOS) | 39 #if defined(OS_CHROMEOS) |
42 #include "base/files/file_util.h" | 40 #include "base/files/file_util.h" |
43 #endif | 41 #endif |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 | 133 |
136 ChildProcess ppapi_process; | 134 ChildProcess ppapi_process; |
137 ppapi_process.set_main_thread( | 135 ppapi_process.set_main_thread( |
138 new PpapiThread(parameters.command_line, false)); // Not a broker. | 136 new PpapiThread(parameters.command_line, false)); // Not a broker. |
139 | 137 |
140 #if defined(OS_WIN) | 138 #if defined(OS_WIN) |
141 if (!base::win::IsUser32AndGdi32Available()) | 139 if (!base::win::IsUser32AndGdi32Available()) |
142 gfx::win::MaybeInitializeDirectWrite(); | 140 gfx::win::MaybeInitializeDirectWrite(); |
143 bool use_direct_write = gfx::win::IsDirectWriteEnabled(); | 141 bool use_direct_write = gfx::win::IsDirectWriteEnabled(); |
144 if (use_direct_write) { | 142 if (use_direct_write) { |
145 if (ShouldUseDirectWriteFontProxyFieldTrial()) { | 143 InitializeDWriteFontProxy(); |
146 InitializeDWriteFontProxy(); | |
147 } else { | |
148 WarmupDirectWrite(); | |
149 } | |
150 } else { | 144 } else { |
151 SkTypeface_SetEnsureLOGFONTAccessibleProc(SkiaPreCacheFont); | 145 SkTypeface_SetEnsureLOGFONTAccessibleProc(SkiaPreCacheFont); |
152 } | 146 } |
153 | 147 |
154 blink::WebFontRendering::setUseDirectWrite(use_direct_write); | 148 blink::WebFontRendering::setUseDirectWrite(use_direct_write); |
155 blink::WebFontRendering::setDeviceScaleFactor(gfx::GetDPIScale()); | 149 blink::WebFontRendering::setDeviceScaleFactor(gfx::GetDPIScale()); |
156 #endif | 150 #endif |
157 | 151 |
158 main_message_loop.Run(); | 152 main_message_loop.Run(); |
159 | 153 |
160 #if defined(OS_WIN) | 154 #if defined(OS_WIN) |
161 if (ShouldUseDirectWriteFontProxyFieldTrial()) | 155 UninitializeDWriteFontProxy(); |
162 UninitializeDWriteFontProxy(); | |
163 #endif | 156 #endif |
164 return 0; | 157 return 0; |
165 } | 158 } |
166 | 159 |
167 } // namespace content | 160 } // namespace content |
OLD | NEW |