| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 WEBKIT_BROWSER_FILEAPI_ASYNC_FILE_UTIL_H_ | 5 #ifndef STORAGE_BROWSER_FILEAPI_ASYNC_FILE_UTIL_H_ |
| 6 #define WEBKIT_BROWSER_FILEAPI_ASYNC_FILE_UTIL_H_ | 6 #define STORAGE_BROWSER_FILEAPI_ASYNC_FILE_UTIL_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/callback_forward.h" | 11 #include "base/callback_forward.h" |
| 12 #include "base/files/file.h" | 12 #include "base/files/file.h" |
| 13 #include "base/files/file_util_proxy.h" | 13 #include "base/files/file_util_proxy.h" |
| 14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 15 #include "webkit/browser/fileapi/file_system_operation.h" | 15 #include "storage/browser/fileapi/file_system_operation.h" |
| 16 #include "webkit/browser/storage_browser_export.h" | 16 #include "storage/browser/storage_browser_export.h" |
| 17 #include "webkit/common/fileapi/directory_entry.h" | 17 #include "storage/common/fileapi/directory_entry.h" |
| 18 | 18 |
| 19 namespace base { | 19 namespace base { |
| 20 class Time; | 20 class Time; |
| 21 } | 21 } |
| 22 | 22 |
| 23 namespace storage { | 23 namespace storage { |
| 24 class ShareableFileReference; | 24 class ShareableFileReference; |
| 25 } | 25 } |
| 26 | 26 |
| 27 namespace storage { | 27 namespace storage { |
| (...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 scoped_ptr<FileSystemOperationContext> context, | 356 scoped_ptr<FileSystemOperationContext> context, |
| 357 const FileSystemURL& url, | 357 const FileSystemURL& url, |
| 358 const CreateSnapshotFileCallback& callback) = 0; | 358 const CreateSnapshotFileCallback& callback) = 0; |
| 359 | 359 |
| 360 private: | 360 private: |
| 361 DISALLOW_COPY_AND_ASSIGN(AsyncFileUtil); | 361 DISALLOW_COPY_AND_ASSIGN(AsyncFileUtil); |
| 362 }; | 362 }; |
| 363 | 363 |
| 364 } // namespace storage | 364 } // namespace storage |
| 365 | 365 |
| 366 #endif // WEBKIT_BROWSER_FILEAPI_ASYNC_FILE_UTIL_H_ | 366 #endif // STORAGE_BROWSER_FILEAPI_ASYNC_FILE_UTIL_H_ |
| OLD | NEW |