| 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_SYNC_FILE_SYSTEM_DRIVE_BACKEND_FAKE_DRIVE_UPLOADER_H_ | 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_FAKE_DRIVE_UPLOADER_H_ |
| 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_FAKE_DRIVE_UPLOADER_H_ | 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_FAKE_DRIVE_UPLOADER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/files/file_util.h" | 10 #include "base/files/file_util.h" |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 | 22 |
| 23 class FakeDriveServiceWrapper : public drive::FakeDriveService { | 23 class FakeDriveServiceWrapper : public drive::FakeDriveService { |
| 24 public: | 24 public: |
| 25 FakeDriveServiceWrapper(); | 25 FakeDriveServiceWrapper(); |
| 26 ~FakeDriveServiceWrapper() override; | 26 ~FakeDriveServiceWrapper() override; |
| 27 | 27 |
| 28 // DriveServiceInterface overrides. | 28 // DriveServiceInterface overrides. |
| 29 google_apis::CancelCallback AddNewDirectory( | 29 google_apis::CancelCallback AddNewDirectory( |
| 30 const std::string& parent_resource_id, | 30 const std::string& parent_resource_id, |
| 31 const std::string& directory_name, | 31 const std::string& directory_name, |
| 32 const AddNewDirectoryOptions& options, | 32 const drive::AddNewDirectoryOptions& options, |
| 33 const google_apis::FileResourceCallback& callback) override; | 33 const google_apis::FileResourceCallback& callback) override; |
| 34 | 34 |
| 35 void set_make_directory_conflict(bool enable) { | 35 void set_make_directory_conflict(bool enable) { |
| 36 make_directory_conflict_ = enable; | 36 make_directory_conflict_ = enable; |
| 37 } | 37 } |
| 38 | 38 |
| 39 private: | 39 private: |
| 40 bool make_directory_conflict_; | 40 bool make_directory_conflict_; |
| 41 | 41 |
| 42 DISALLOW_COPY_AND_ASSIGN(FakeDriveServiceWrapper); | 42 DISALLOW_COPY_AND_ASSIGN(FakeDriveServiceWrapper); |
| 43 }; | 43 }; |
| 44 | 44 |
| 45 // A fake implementation of DriveUploaderInterface, which provides fake | 45 // A fake implementation of DriveUploaderInterface, which provides fake |
| 46 // behaviors for file uploading. | 46 // behaviors for file uploading. |
| 47 class FakeDriveUploader : public drive::DriveUploaderInterface { | 47 class FakeDriveUploader : public drive::DriveUploaderInterface { |
| 48 public: | 48 public: |
| 49 explicit FakeDriveUploader(FakeDriveServiceWrapper* fake_drive_service); | 49 explicit FakeDriveUploader(FakeDriveServiceWrapper* fake_drive_service); |
| 50 ~FakeDriveUploader() override; | 50 ~FakeDriveUploader() override; |
| 51 | 51 |
| 52 // DriveUploaderInterface overrides. | 52 // DriveUploaderInterface overrides. |
| 53 google_apis::CancelCallback UploadNewFile( | 53 google_apis::CancelCallback UploadNewFile( |
| 54 const std::string& parent_resource_id, | 54 const std::string& parent_resource_id, |
| 55 const base::FilePath& local_file_path, | 55 const base::FilePath& local_file_path, |
| 56 const std::string& title, | 56 const std::string& title, |
| 57 const std::string& content_type, | 57 const std::string& content_type, |
| 58 const UploadNewFileOptions& options, | 58 const drive::UploadNewFileOptions& options, |
| 59 const drive::UploadCompletionCallback& callback, | 59 const drive::UploadCompletionCallback& callback, |
| 60 const google_apis::ProgressCallback& progress_callback) override; | 60 const google_apis::ProgressCallback& progress_callback) override; |
| 61 google_apis::CancelCallback UploadExistingFile( | 61 google_apis::CancelCallback UploadExistingFile( |
| 62 const std::string& resource_id, | 62 const std::string& resource_id, |
| 63 const base::FilePath& local_file_path, | 63 const base::FilePath& local_file_path, |
| 64 const std::string& content_type, | 64 const std::string& content_type, |
| 65 const UploadExistingFileOptions& options, | 65 const drive::UploadExistingFileOptions& options, |
| 66 const drive::UploadCompletionCallback& callback, | 66 const drive::UploadCompletionCallback& callback, |
| 67 const google_apis::ProgressCallback& progress_callback) override; | 67 const google_apis::ProgressCallback& progress_callback) override; |
| 68 google_apis::CancelCallback ResumeUploadFile( | 68 google_apis::CancelCallback ResumeUploadFile( |
| 69 const GURL& upload_location, | 69 const GURL& upload_location, |
| 70 const base::FilePath& local_file_path, | 70 const base::FilePath& local_file_path, |
| 71 const std::string& content_type, | 71 const std::string& content_type, |
| 72 const drive::UploadCompletionCallback& callback, | 72 const drive::UploadCompletionCallback& callback, |
| 73 const google_apis::ProgressCallback& progress_callback) override; | 73 const google_apis::ProgressCallback& progress_callback) override; |
| 74 | 74 |
| 75 void set_make_file_conflict(bool enable) { | 75 void set_make_file_conflict(bool enable) { |
| 76 make_file_conflict_ = enable; | 76 make_file_conflict_ = enable; |
| 77 } | 77 } |
| 78 | 78 |
| 79 private: | 79 private: |
| 80 FakeDriveServiceWrapper* fake_drive_service_; | 80 FakeDriveServiceWrapper* fake_drive_service_; |
| 81 bool make_file_conflict_; | 81 bool make_file_conflict_; |
| 82 | 82 |
| 83 DISALLOW_COPY_AND_ASSIGN(FakeDriveUploader); | 83 DISALLOW_COPY_AND_ASSIGN(FakeDriveUploader); |
| 84 }; | 84 }; |
| 85 | 85 |
| 86 } // namespace drive_backend | 86 } // namespace drive_backend |
| 87 } // namespace sync_file_system | 87 } // namespace sync_file_system |
| 88 | 88 |
| 89 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_FAKE_DRIVE_UPLOADER_H_ | 89 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_FAKE_DRIVE_UPLOADER_H_ |
| OLD | NEW |