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_LOCAL_CHANGE_PROCESSOR_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_LOCAL_CHANGE_PROCESSOR_DELEGATE_H_ |
6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_LOCAL_CHANGE_PROCESSOR_DELEGATE_H_ | 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_LOCAL_CHANGE_PROCESSOR_DELEGATE_H_ |
7 | 7 |
8 #include "base/callback.h" | 8 #include "base/callback.h" |
9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
10 #include "chrome/browser/sync_file_system/drive_file_sync_service.h" | 10 #include "chrome/browser/sync_file_system/drive_file_sync_service.h" |
11 #include "chrome/browser/sync_file_system/sync_file_system.pb.h" | 11 #include "chrome/browser/sync_file_system/sync_file_system.pb.h" |
12 #include "webkit/browser/fileapi/file_system_url.h" | 12 #include "webkit/browser/fileapi/file_system_url.h" |
13 #include "webkit/fileapi/syncable/file_change.h" | 13 #include "webkit/browser/fileapi/syncable/file_change.h" |
14 #include "webkit/fileapi/syncable/sync_callbacks.h" | 14 #include "webkit/browser/fileapi/syncable/sync_callbacks.h" |
15 #include "webkit/fileapi/syncable/sync_file_metadata.h" | 15 #include "webkit/browser/fileapi/syncable/sync_file_metadata.h" |
16 | 16 |
17 namespace sync_file_system { | 17 namespace sync_file_system { |
18 | 18 |
19 class DriveMetadataStore; | 19 class DriveMetadataStore; |
20 | 20 |
21 namespace drive { | 21 namespace drive { |
22 | 22 |
23 class APIUtil; | 23 class APIUtil; |
24 | 24 |
25 // This class handles ApplyLocalChange in LocalChangeProcessor, and its instance | 25 // This class handles ApplyLocalChange in LocalChangeProcessor, and its instance |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 | 125 |
126 base::WeakPtrFactory<LocalChangeProcessorDelegate> weak_factory_; | 126 base::WeakPtrFactory<LocalChangeProcessorDelegate> weak_factory_; |
127 | 127 |
128 DISALLOW_COPY_AND_ASSIGN(LocalChangeProcessorDelegate); | 128 DISALLOW_COPY_AND_ASSIGN(LocalChangeProcessorDelegate); |
129 }; | 129 }; |
130 | 130 |
131 } // namespace drive | 131 } // namespace drive |
132 } // namespace sync_file_system | 132 } // namespace sync_file_system |
133 | 133 |
134 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_LOCAL_CHANGE_PROCESSOR_DELEGATE
_H_ | 134 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_LOCAL_CHANGE_PROCESSOR_DELEGATE
_H_ |
OLD | NEW |