| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_PROVIDED_FILE_SYSTEM_INTERF
ACE_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_PROVIDED_FILE_SYSTEM_INTERF
ACE_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_PROVIDED_FILE_SYSTEM_INTERF
ACE_H_ | 6 #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_PROVIDED_FILE_SYSTEM_INTERF
ACE_H_ |
| 7 | 7 |
| 8 #include "webkit/browser/fileapi/async_file_util.h" | 8 #include "webkit/browser/fileapi/async_file_util.h" |
| 9 | 9 |
| 10 class EventRouter; | 10 class EventRouter; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 // Requests unmounting of the file system. The callback is called when the | 29 // Requests unmounting of the file system. The callback is called when the |
| 30 // request is accepted or rejected, with an error code. | 30 // request is accepted or rejected, with an error code. |
| 31 virtual void RequestUnmount( | 31 virtual void RequestUnmount( |
| 32 const fileapi::AsyncFileUtil::StatusCallback& callback) = 0; | 32 const fileapi::AsyncFileUtil::StatusCallback& callback) = 0; |
| 33 | 33 |
| 34 // Requests metadata of the passed |entry_path|. It can be either a file | 34 // Requests metadata of the passed |entry_path|. It can be either a file |
| 35 // or a directory. | 35 // or a directory. |
| 36 virtual void GetMetadata( | 36 virtual void GetMetadata( |
| 37 const base::FilePath& entry_path, | 37 const base::FilePath& entry_path, |
| 38 const fileapi::AsyncFileUtil::GetFileInfoCallback& callback) = 0; | 38 const fileapi::AsyncFileUtil::GetFileInfoCallback& callback) = 0; |
| 39 // Requests enumerating entries from the passed |directory_path|. The callback |
| 40 // can be called multiple times until either an error is returned or the |
| 41 // has_more field is set to false. |
| 42 virtual void ReadDirectory( |
| 43 const base::FilePath& directory_path, |
| 44 const fileapi::AsyncFileUtil::ReadDirectoryCallback& callback) = 0; |
| 39 | 45 |
| 40 // Returns a provided file system info for this file system. | 46 // Returns a provided file system info for this file system. |
| 41 virtual const ProvidedFileSystemInfo& GetFileSystemInfo() const = 0; | 47 virtual const ProvidedFileSystemInfo& GetFileSystemInfo() const = 0; |
| 42 | 48 |
| 43 // Returns a request manager for the file system. | 49 // Returns a request manager for the file system. |
| 44 virtual RequestManager* GetRequestManager() = 0; | 50 virtual RequestManager* GetRequestManager() = 0; |
| 45 }; | 51 }; |
| 46 | 52 |
| 47 } // namespace file_system_provider | 53 } // namespace file_system_provider |
| 48 } // namespace chromeos | 54 } // namespace chromeos |
| 49 | 55 |
| 50 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_PROVIDED_FILE_SYSTEM_INT
ERFACE_H_ | 56 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_PROVIDED_FILE_SYSTEM_INT
ERFACE_H_ |
| OLD | NEW |