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

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

Issue 2679323006: Remove content/browser dependency on WebFontRenderStyle. (Closed)
Patch Set: merge Created 3 years, 10 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
« no previous file with comments | « content/common/sandbox_linux/sandbox_linux.h ('k') | content/public/child/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "content/ppapi_plugin/ppapi_blink_platform_impl.h" 5 #include "content/ppapi_plugin/ppapi_blink_platform_impl.h"
6 6
7 #include <stdint.h> 7 #include <stdint.h>
8 8
9 #include <map> 9 #include <map>
10 10
11 #include "base/logging.h" 11 #include "base/logging.h"
12 #include "base/strings/string16.h" 12 #include "base/strings/string16.h"
13 #include "base/threading/platform_thread.h" 13 #include "base/threading/platform_thread.h"
14 #include "build/build_config.h" 14 #include "build/build_config.h"
15 #include "content/child/child_thread_impl.h" 15 #include "content/child/child_thread_impl.h"
16 #include "content/common/child_process_messages.h" 16 #include "content/common/child_process_messages.h"
17 #include "ppapi/proxy/plugin_globals.h" 17 #include "ppapi/proxy/plugin_globals.h"
18 #include "ppapi/shared_impl/proxy_lock.h" 18 #include "ppapi/shared_impl/proxy_lock.h"
19 #include "third_party/WebKit/public/platform/WebString.h" 19 #include "third_party/WebKit/public/platform/WebString.h"
20 20
21 #if defined(OS_MACOSX) 21 #if defined(OS_MACOSX)
22 #include "third_party/WebKit/public/platform/mac/WebSandboxSupport.h" 22 #include "third_party/WebKit/public/platform/mac/WebSandboxSupport.h"
23 #elif defined(OS_POSIX) && !defined(OS_ANDROID) 23 #elif defined(OS_POSIX) && !defined(OS_ANDROID)
24 #include "content/common/child_process_sandbox_support_impl_linux.h" 24 #include "content/child/child_process_sandbox_support_impl_linux.h"
25 #include "third_party/WebKit/public/platform/linux/WebFallbackFont.h" 25 #include "third_party/WebKit/public/platform/linux/WebFallbackFont.h"
26 #include "third_party/WebKit/public/platform/linux/WebSandboxSupport.h" 26 #include "third_party/WebKit/public/platform/linux/WebSandboxSupport.h"
27 #include "third_party/icu/source/common/unicode/utf16.h" 27 #include "third_party/icu/source/common/unicode/utf16.h"
28 #endif 28 #endif
29 29
30 using blink::WebSandboxSupport; 30 using blink::WebSandboxSupport;
31 using blink::WebString; 31 using blink::WebString;
32 using blink::WebUChar; 32 using blink::WebUChar;
33 using blink::WebUChar32; 33 using blink::WebUChar32;
34 34
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 } 237 }
238 238
239 int PpapiBlinkPlatformImpl::databaseDeleteFile( 239 int PpapiBlinkPlatformImpl::databaseDeleteFile(
240 const blink::WebString& vfs_file_name, 240 const blink::WebString& vfs_file_name,
241 bool sync_dir) { 241 bool sync_dir) {
242 NOTREACHED(); 242 NOTREACHED();
243 return 0; 243 return 0;
244 } 244 }
245 245
246 } // namespace content 246 } // namespace content
OLDNEW
« no previous file with comments | « content/common/sandbox_linux/sandbox_linux.h ('k') | content/public/child/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698