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 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ |
6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ | 6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 PP_Resource resource) const OVERRIDE; | 212 PP_Resource resource) const OVERRIDE; |
213 virtual GURL GetFileSystemRootUrl(PP_Instance instance, | 213 virtual GURL GetFileSystemRootUrl(PP_Instance instance, |
214 PP_Resource resource) const OVERRIDE; | 214 PP_Resource resource) const OVERRIDE; |
215 virtual bool MakeDirectory( | 215 virtual bool MakeDirectory( |
216 const GURL& path, | 216 const GURL& path, |
217 bool recursive, | 217 bool recursive, |
218 fileapi::FileSystemCallbackDispatcher* dispatcher) OVERRIDE; | 218 fileapi::FileSystemCallbackDispatcher* dispatcher) OVERRIDE; |
219 virtual bool Query( | 219 virtual bool Query( |
220 const GURL& path, | 220 const GURL& path, |
221 fileapi::FileSystemCallbackDispatcher* dispatcher) OVERRIDE; | 221 fileapi::FileSystemCallbackDispatcher* dispatcher) OVERRIDE; |
| 222 virtual bool ReadDirectoryEntries( |
| 223 const GURL& path, |
| 224 fileapi::FileSystemCallbackDispatcher* dispatcher) OVERRIDE; |
222 virtual bool Touch( | 225 virtual bool Touch( |
223 const GURL& path, | 226 const GURL& path, |
224 const base::Time& last_access_time, | 227 const base::Time& last_access_time, |
225 const base::Time& last_modified_time, | 228 const base::Time& last_modified_time, |
226 fileapi::FileSystemCallbackDispatcher* dispatcher) OVERRIDE; | 229 fileapi::FileSystemCallbackDispatcher* dispatcher) OVERRIDE; |
227 virtual bool SetLength( | 230 virtual bool SetLength( |
228 const GURL& path, | 231 const GURL& path, |
229 int64_t length, | 232 int64_t length, |
230 fileapi::FileSystemCallbackDispatcher* dispatcher) OVERRIDE; | 233 fileapi::FileSystemCallbackDispatcher* dispatcher) OVERRIDE; |
231 virtual bool Delete( | 234 virtual bool Delete( |
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
438 device_enumeration_event_handler_; | 441 device_enumeration_event_handler_; |
439 | 442 |
440 scoped_refptr<ContextProviderCommandBuffer> offscreen_context3d_; | 443 scoped_refptr<ContextProviderCommandBuffer> offscreen_context3d_; |
441 | 444 |
442 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); | 445 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); |
443 }; | 446 }; |
444 | 447 |
445 } // namespace content | 448 } // namespace content |
446 | 449 |
447 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ | 450 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ |
OLD | NEW |