| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_CHILD_FILEAPI_WEBFILESYSTEM_IMPL_H_ | 5 #ifndef CONTENT_CHILD_FILEAPI_WEBFILESYSTEM_IMPL_H_ |
| 6 #define CONTENT_CHILD_FILEAPI_WEBFILESYSTEM_IMPL_H_ | 6 #define CONTENT_CHILD_FILEAPI_WEBFILESYSTEM_IMPL_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 | 47 |
| 48 // webkit_glue::WorkerTaskRunner::Observer implementation. | 48 // webkit_glue::WorkerTaskRunner::Observer implementation. |
| 49 virtual void OnWorkerRunLoopStopped() OVERRIDE; | 49 virtual void OnWorkerRunLoopStopped() OVERRIDE; |
| 50 | 50 |
| 51 // WebFileSystem implementation. | 51 // WebFileSystem implementation. |
| 52 virtual void openFileSystem( | 52 virtual void openFileSystem( |
| 53 const WebKit::WebURL& storage_partition, | 53 const WebKit::WebURL& storage_partition, |
| 54 const WebKit::WebFileSystemType type, | 54 const WebKit::WebFileSystemType type, |
| 55 bool create, | 55 bool create, |
| 56 WebKit::WebFileSystemCallbacks); | 56 WebKit::WebFileSystemCallbacks); |
| 57 virtual void resolveURL( |
| 58 const WebKit::WebURL& filesystem_url, |
| 59 WebKit::WebFileSystemCallbacks) OVERRIDE; |
| 57 virtual void deleteFileSystem( | 60 virtual void deleteFileSystem( |
| 58 const WebKit::WebURL& storage_partition, | 61 const WebKit::WebURL& storage_partition, |
| 59 const WebKit::WebFileSystemType type, | 62 const WebKit::WebFileSystemType type, |
| 60 WebKit::WebFileSystemCallbacks); | 63 WebKit::WebFileSystemCallbacks); |
| 61 virtual void move( | 64 virtual void move( |
| 62 const WebKit::WebURL& src_path, | 65 const WebKit::WebURL& src_path, |
| 63 const WebKit::WebURL& dest_path, | 66 const WebKit::WebURL& dest_path, |
| 64 WebKit::WebFileSystemCallbacks) OVERRIDE; | 67 WebKit::WebFileSystemCallbacks) OVERRIDE; |
| 65 virtual void copy( | 68 virtual void copy( |
| 66 const WebKit::WebURL& src_path, | 69 const WebKit::WebURL& src_path, |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 | 114 |
| 112 CallbacksMap callbacks_; | 115 CallbacksMap callbacks_; |
| 113 int next_callbacks_id_; | 116 int next_callbacks_id_; |
| 114 | 117 |
| 115 DISALLOW_COPY_AND_ASSIGN(WebFileSystemImpl); | 118 DISALLOW_COPY_AND_ASSIGN(WebFileSystemImpl); |
| 116 }; | 119 }; |
| 117 | 120 |
| 118 } // namespace content | 121 } // namespace content |
| 119 | 122 |
| 120 #endif // CONTENT_CHILD_FILEAPI_WEBFILESYSTEM_IMPL_H_ | 123 #endif // CONTENT_CHILD_FILEAPI_WEBFILESYSTEM_IMPL_H_ |
| OLD | NEW |