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> |
| 8 |
7 #include <map> | 9 #include <map> |
8 | 10 |
9 #include "base/logging.h" | 11 #include "base/logging.h" |
10 #include "base/strings/string16.h" | 12 #include "base/strings/string16.h" |
11 #include "base/threading/platform_thread.h" | 13 #include "base/threading/platform_thread.h" |
12 #include "build/build_config.h" | 14 #include "build/build_config.h" |
13 #include "content/child/child_thread_impl.h" | 15 #include "content/child/child_thread_impl.h" |
14 #include "content/common/child_process_messages.h" | 16 #include "content/common/child_process_messages.h" |
15 #include "ppapi/proxy/plugin_globals.h" | 17 #include "ppapi/proxy/plugin_globals.h" |
16 #include "ppapi/shared_impl/proxy_lock.h" | 18 #include "ppapi/shared_impl/proxy_lock.h" |
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
240 } | 242 } |
241 | 243 |
242 int PpapiBlinkPlatformImpl::databaseDeleteFile( | 244 int PpapiBlinkPlatformImpl::databaseDeleteFile( |
243 const blink::WebString& vfs_file_name, | 245 const blink::WebString& vfs_file_name, |
244 bool sync_dir) { | 246 bool sync_dir) { |
245 NOTREACHED(); | 247 NOTREACHED(); |
246 return 0; | 248 return 0; |
247 } | 249 } |
248 | 250 |
249 } // namespace content | 251 } // namespace content |
OLD | NEW |