| 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 "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 Loading... |
| 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 |
| OLD | NEW |