| 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 STORAGE_BROWSER_FILEAPI_FILE_SYSTEM_OPERATION_H_ | 5 #ifndef STORAGE_BROWSER_FILEAPI_FILE_SYSTEM_OPERATION_H_ |
| 6 #define STORAGE_BROWSER_FILEAPI_FILE_SYSTEM_OPERATION_H_ | 6 #define STORAGE_BROWSER_FILEAPI_FILE_SYSTEM_OPERATION_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 } | 23 } |
| 24 | 24 |
| 25 namespace net { | 25 namespace net { |
| 26 class URLRequest; | 26 class URLRequest; |
| 27 } | 27 } |
| 28 | 28 |
| 29 namespace storage { | 29 namespace storage { |
| 30 class ShareableFileReference; | 30 class ShareableFileReference; |
| 31 } | 31 } |
| 32 | 32 |
| 33 class GURL; | |
| 34 | |
| 35 namespace storage { | 33 namespace storage { |
| 36 | 34 |
| 37 class FileSystemContext; | 35 class FileSystemContext; |
| 38 class FileSystemURL; | 36 class FileSystemURL; |
| 39 class FileWriterDelegate; | 37 class FileWriterDelegate; |
| 40 | 38 |
| 41 // The interface class for FileSystemOperation implementations. | 39 // The interface class for FileSystemOperation implementations. |
| 42 // | 40 // |
| 43 // This interface defines file system operations required to implement | 41 // This interface defines file system operations required to implement |
| 44 // "File API: Directories and System" | 42 // "File API: Directories and System" |
| (...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 500 kOperationOpenFile, | 498 kOperationOpenFile, |
| 501 kOperationCloseFile, | 499 kOperationCloseFile, |
| 502 kOperationGetLocalPath, | 500 kOperationGetLocalPath, |
| 503 kOperationCancel, | 501 kOperationCancel, |
| 504 }; | 502 }; |
| 505 }; | 503 }; |
| 506 | 504 |
| 507 } // namespace storage | 505 } // namespace storage |
| 508 | 506 |
| 509 #endif // STORAGE_BROWSER_FILEAPI_FILE_SYSTEM_OPERATION_H_ | 507 #endif // STORAGE_BROWSER_FILEAPI_FILE_SYSTEM_OPERATION_H_ |
| OLD | NEW |