| 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_SERVICE_HELPER_
H_ | 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_FAKE_DRIVE_SERVICE_HELPER_
H_ |
| 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_FAKE_DRIVE_SERVICE_HELPER_
H_ | 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_FAKE_DRIVE_SERVICE_HELPER_
H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/files/scoped_temp_dir.h" | 10 #include "base/files/scoped_temp_dir.h" |
| 11 #include "chrome/browser/drive/drive_uploader.h" | 11 #include "components/drive/drive_uploader.h" |
| 12 #include "chrome/browser/drive/fake_drive_service.h" | 12 #include "components/drive/service/fake_drive_service.h" |
| 13 | 13 |
| 14 namespace base { | 14 namespace base { |
| 15 class FilePath; | 15 class FilePath; |
| 16 } | 16 } |
| 17 | 17 |
| 18 namespace sync_file_system { | 18 namespace sync_file_system { |
| 19 namespace drive_backend { | 19 namespace drive_backend { |
| 20 | 20 |
| 21 class FakeDriveServiceHelper { | 21 class FakeDriveServiceHelper { |
| 22 public: | 22 public: |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 drive::FakeDriveService* fake_drive_service_; | 93 drive::FakeDriveService* fake_drive_service_; |
| 94 drive::DriveUploaderInterface* drive_uploader_; | 94 drive::DriveUploaderInterface* drive_uploader_; |
| 95 | 95 |
| 96 std::string sync_root_folder_title_; | 96 std::string sync_root_folder_title_; |
| 97 }; | 97 }; |
| 98 | 98 |
| 99 } // namespace drive_backend | 99 } // namespace drive_backend |
| 100 } // namespace sync_file_system | 100 } // namespace sync_file_system |
| 101 | 101 |
| 102 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_FAKE_DRIVE_SERVICE_HELP
ER_H_ | 102 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_FAKE_DRIVE_SERVICE_HELP
ER_H_ |
| OLD | NEW |