Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(133)

Side by Side Diff: chrome/browser/sync_file_system/drive_backend/local_to_remote_syncer.h

Issue 2530053003: chrome: Cleanup class/struct forward declarations (Closed)
Patch Set: Rebase + address comment Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_LOCAL_TO_REMOTE_SYNCER_H_ 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_LOCAL_TO_REMOTE_SYNCER_H_
6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_LOCAL_TO_REMOTE_SYNCER_H_ 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_LOCAL_TO_REMOTE_SYNCER_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <memory> 10 #include <memory>
(...skipping 11 matching lines...) Expand all
22 class DriveServiceInterface; 22 class DriveServiceInterface;
23 class DriveUploaderInterface; 23 class DriveUploaderInterface;
24 } 24 }
25 25
26 namespace google_apis { 26 namespace google_apis {
27 class FileResource; 27 class FileResource;
28 } 28 }
29 29
30 namespace sync_file_system { 30 namespace sync_file_system {
31 31
32 class RemoteChangeProcessor;
33
34 namespace drive_backend { 32 namespace drive_backend {
35 33
36 class FileDetails; 34 class FileDetails;
37 class FileTracker; 35 class FileTracker;
38 class FolderCreator; 36 class FolderCreator;
39 class MetadataDatabase; 37 class MetadataDatabase;
40 class SyncEngineContext; 38 class SyncEngineContext;
41 39
42 class LocalToRemoteSyncer : public SyncTask { 40 class LocalToRemoteSyncer : public SyncTask {
43 public: 41 public:
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 127
130 base::WeakPtrFactory<LocalToRemoteSyncer> weak_ptr_factory_; 128 base::WeakPtrFactory<LocalToRemoteSyncer> weak_ptr_factory_;
131 129
132 DISALLOW_COPY_AND_ASSIGN(LocalToRemoteSyncer); 130 DISALLOW_COPY_AND_ASSIGN(LocalToRemoteSyncer);
133 }; 131 };
134 132
135 } // namespace drive_backend 133 } // namespace drive_backend
136 } // namespace sync_file_system 134 } // namespace sync_file_system
137 135
138 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_LOCAL_TO_REMOTE_SYNCER_ H_ 136 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_LOCAL_TO_REMOTE_SYNCER_ H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698