| 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_FAKE_PROVIDED_FILE_SYSTEM_H
_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_FAKE_PROVIDED_FILE_SYSTEM_H
_ |
| 6 #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_FAKE_PROVIDED_FILE_SYSTEM_H
_ | 6 #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_FAKE_PROVIDED_FILE_SYSTEM_H
_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 | 9 |
| 10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 const ReadChunkReceivedCallback& callback) OVERRIDE; | 59 const ReadChunkReceivedCallback& callback) OVERRIDE; |
| 60 virtual void CreateDirectory( | 60 virtual void CreateDirectory( |
| 61 const base::FilePath& directory_path, | 61 const base::FilePath& directory_path, |
| 62 bool exclusive, | 62 bool exclusive, |
| 63 bool recursive, | 63 bool recursive, |
| 64 const fileapi::AsyncFileUtil::StatusCallback& callback) OVERRIDE; | 64 const fileapi::AsyncFileUtil::StatusCallback& callback) OVERRIDE; |
| 65 virtual void DeleteEntry( | 65 virtual void DeleteEntry( |
| 66 const base::FilePath& entry_path, | 66 const base::FilePath& entry_path, |
| 67 bool recursive, | 67 bool recursive, |
| 68 const fileapi::AsyncFileUtil::StatusCallback& callback) OVERRIDE; | 68 const fileapi::AsyncFileUtil::StatusCallback& callback) OVERRIDE; |
| 69 virtual void CreateFile( |
| 70 const base::FilePath& file_path, |
| 71 const fileapi::AsyncFileUtil::StatusCallback& callback) OVERRIDE; |
| 69 virtual const ProvidedFileSystemInfo& GetFileSystemInfo() const OVERRIDE; | 72 virtual const ProvidedFileSystemInfo& GetFileSystemInfo() const OVERRIDE; |
| 70 virtual RequestManager* GetRequestManager() OVERRIDE; | 73 virtual RequestManager* GetRequestManager() OVERRIDE; |
| 71 virtual base::WeakPtr<ProvidedFileSystemInterface> GetWeakPtr() OVERRIDE; | 74 virtual base::WeakPtr<ProvidedFileSystemInterface> GetWeakPtr() OVERRIDE; |
| 72 | 75 |
| 73 // Factory callback, to be used in Service::SetFileSystemFactory(). The | 76 // Factory callback, to be used in Service::SetFileSystemFactory(). The |
| 74 // |event_router| argument can be NULL. | 77 // |event_router| argument can be NULL. |
| 75 static ProvidedFileSystemInterface* Create( | 78 static ProvidedFileSystemInterface* Create( |
| 76 Profile* profile, | 79 Profile* profile, |
| 77 const ProvidedFileSystemInfo& file_system_info); | 80 const ProvidedFileSystemInfo& file_system_info); |
| 78 | 81 |
| 79 private: | 82 private: |
| 80 typedef std::map<int, base::FilePath> OpenedFilesMap; | 83 typedef std::map<int, base::FilePath> OpenedFilesMap; |
| 81 | 84 |
| 82 ProvidedFileSystemInfo file_system_info_; | 85 ProvidedFileSystemInfo file_system_info_; |
| 83 OpenedFilesMap opened_files_; | 86 OpenedFilesMap opened_files_; |
| 84 int last_file_handle_; | 87 int last_file_handle_; |
| 85 | 88 |
| 86 base::WeakPtrFactory<ProvidedFileSystemInterface> weak_ptr_factory_; | 89 base::WeakPtrFactory<ProvidedFileSystemInterface> weak_ptr_factory_; |
| 87 DISALLOW_COPY_AND_ASSIGN(FakeProvidedFileSystem); | 90 DISALLOW_COPY_AND_ASSIGN(FakeProvidedFileSystem); |
| 88 }; | 91 }; |
| 89 | 92 |
| 90 } // namespace file_system_provider | 93 } // namespace file_system_provider |
| 91 } // namespace chromeos | 94 } // namespace chromeos |
| 92 | 95 |
| 93 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_FAKE_PROVIDED_FILE_SYSTE
M_H_ | 96 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_FAKE_PROVIDED_FILE_SYSTE
M_H_ |
| OLD | NEW |