| 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_INITIALIZER_H_ | 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_SYNC_ENGINE_INITIALIZER_H_ |
| 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_SYNC_ENGINE_INITIALIZER_H_ | 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_SYNC_ENGINE_INITIALIZER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 #include <string> | 11 #include <string> |
| 12 | 12 |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
| 15 #include "base/memory/scoped_vector.h" | 15 #include "base/memory/scoped_vector.h" |
| 16 #include "base/memory/weak_ptr.h" | 16 #include "base/memory/weak_ptr.h" |
| 17 #include "chrome/browser/sync_file_system/drive_backend/sync_task.h" | 17 #include "chrome/browser/sync_file_system/drive_backend/sync_task.h" |
| 18 #include "chrome/browser/sync_file_system/sync_callbacks.h" | 18 #include "chrome/browser/sync_file_system/sync_callbacks.h" |
| 19 #include "google_apis/drive/drive_api_error_codes.h" | 19 #include "google_apis/drive/drive_api_error_codes.h" |
| 20 #include "google_apis/drive/drive_common_callbacks.h" | 20 #include "google_apis/drive/drive_common_callbacks.h" |
| 21 | 21 |
| 22 namespace drive { | |
| 23 class DriveServiceInterface; | |
| 24 } | |
| 25 | |
| 26 namespace google_apis { | 22 namespace google_apis { |
| 27 class AboutResource; | 23 class AboutResource; |
| 28 class FileList; | 24 class FileList; |
| 29 class FileResource; | 25 class FileResource; |
| 30 } | 26 } |
| 31 | 27 |
| 32 namespace leveldb { | 28 namespace leveldb { |
| 33 class Env; | 29 class Env; |
| 34 } | 30 } |
| 35 | 31 |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 | 115 |
| 120 base::WeakPtrFactory<SyncEngineInitializer> weak_ptr_factory_; | 116 base::WeakPtrFactory<SyncEngineInitializer> weak_ptr_factory_; |
| 121 | 117 |
| 122 DISALLOW_COPY_AND_ASSIGN(SyncEngineInitializer); | 118 DISALLOW_COPY_AND_ASSIGN(SyncEngineInitializer); |
| 123 }; | 119 }; |
| 124 | 120 |
| 125 } // namespace drive_backend | 121 } // namespace drive_backend |
| 126 } // namespace sync_file_system | 122 } // namespace sync_file_system |
| 127 | 123 |
| 128 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_SYNC_ENGINE_INITIALIZER
_H_ | 124 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_SYNC_ENGINE_INITIALIZER
_H_ |
| OLD | NEW |