Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(793)

Side by Side Diff: content/ppapi_plugin/ppapi_plugin_main.cc

Issue 1834763003: Remove font cache code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Delete message to build the font cache Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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( 144 base::Bind(&ppapi::proxy::PluginGlobals::GetBrowserSender,
147 base::Bind(&ppapi::proxy::PluginGlobals::GetBrowserSender, 145 base::Unretained(ppapi::proxy::PluginGlobals::Get())));
148 base::Unretained(ppapi::proxy::PluginGlobals::Get())));
149 } else {
150 WarmupDirectWrite();
151 }
152 } else { 146 } else {
153 SkTypeface_SetEnsureLOGFONTAccessibleProc(SkiaPreCacheFont); 147 SkTypeface_SetEnsureLOGFONTAccessibleProc(SkiaPreCacheFont);
154 } 148 }
155 149
156 blink::WebFontRendering::setUseDirectWrite(use_direct_write); 150 blink::WebFontRendering::setUseDirectWrite(use_direct_write);
157 blink::WebFontRendering::setDeviceScaleFactor(gfx::GetDPIScale()); 151 blink::WebFontRendering::setDeviceScaleFactor(gfx::GetDPIScale());
158 #endif 152 #endif
159 153
160 main_message_loop.Run(); 154 main_message_loop.Run();
161 155
162 #if defined(OS_WIN) 156 #if defined(OS_WIN)
163 if (ShouldUseDirectWriteFontProxyFieldTrial()) 157 UninitializeDWriteFontProxy();
164 UninitializeDWriteFontProxy();
165 #endif 158 #endif
166 return 0; 159 return 0;
167 } 160 }
168 161
169 } // namespace content 162 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698