| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_SYNC_ENGINE_CONTEXT_H_ | 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_SYNC_ENGINE_CONTEXT_H_ |
| 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_SYNC_ENGINE_CONTEXT_H_ | 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_SYNC_ENGINE_CONTEXT_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 13 #include "base/sequence_checker.h" | 13 #include "base/sequence_checker.h" |
| 14 | 14 |
| 15 namespace base { | 15 namespace base { |
| 16 class SequencedTaskRunner; | 16 class SequencedTaskRunner; |
| 17 class SequencedWorkerPool; | |
| 18 class SingleThreadTaskRunner; | 17 class SingleThreadTaskRunner; |
| 19 } | 18 } |
| 20 | 19 |
| 21 namespace drive { | 20 namespace drive { |
| 22 class DriveServiceInterface; | 21 class DriveServiceInterface; |
| 23 class DriveUploaderInterface; | 22 class DriveUploaderInterface; |
| 24 } | 23 } |
| 25 | 24 |
| 26 namespace sync_file_system { | 25 namespace sync_file_system { |
| 27 | 26 |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 | 74 |
| 76 base::SequenceChecker sequence_checker_; | 75 base::SequenceChecker sequence_checker_; |
| 77 | 76 |
| 78 DISALLOW_COPY_AND_ASSIGN(SyncEngineContext); | 77 DISALLOW_COPY_AND_ASSIGN(SyncEngineContext); |
| 79 }; | 78 }; |
| 80 | 79 |
| 81 } // namespace drive_backend | 80 } // namespace drive_backend |
| 82 } // namespace sync_file_system | 81 } // namespace sync_file_system |
| 83 | 82 |
| 84 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_SYNC_ENGINE_CONTEXT_H_ | 83 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_SYNC_ENGINE_CONTEXT_H_ |
| OLD | NEW |