| 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_DRIVE_SERVICE_ON_WORKER_H_ | 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_SERVICE_ON_WORKER_H_ |
| 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_SERVICE_ON_WORKER_H_ | 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_SERVICE_ON_WORKER_H_ |
| 7 | 7 |
| 8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
| 9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
| 10 #include "base/sequence_checker.h" | 10 #include "base/sequence_checker.h" |
| 11 #include "chrome/browser/drive/drive_service_interface.h" | 11 #include "components/drive/service/drive_service_interface.h" |
| 12 | 12 |
| 13 namespace base { | 13 namespace base { |
| 14 class SingleThreadTaskRunner; | 14 class SingleThreadTaskRunner; |
| 15 class SequencedTaskRunner; | 15 class SequencedTaskRunner; |
| 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 DriveServiceWrapper; | 21 class DriveServiceWrapper; |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 | 194 |
| 195 base::SequenceChecker sequence_checker_; | 195 base::SequenceChecker sequence_checker_; |
| 196 | 196 |
| 197 DISALLOW_COPY_AND_ASSIGN(DriveServiceOnWorker); | 197 DISALLOW_COPY_AND_ASSIGN(DriveServiceOnWorker); |
| 198 }; | 198 }; |
| 199 | 199 |
| 200 } // namespace drive_backend | 200 } // namespace drive_backend |
| 201 } // namespace sync_file_system | 201 } // namespace sync_file_system |
| 202 | 202 |
| 203 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_SERVICE_ON_WORKER
_H_ | 203 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_SERVICE_ON_WORKER
_H_ |
| OLD | NEW |