OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_LOCAL_FILE_SYNC_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_FILE_SYNC_SERVICE_H_ |
6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_FILE_SYNC_SERVICE_H_ | 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_FILE_SYNC_SERVICE_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
11 | 11 |
12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
13 #include "base/callback.h" | 13 #include "base/callback.h" |
14 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
15 #include "base/memory/weak_ptr.h" | 15 #include "base/memory/weak_ptr.h" |
16 #include "base/observer_list.h" | 16 #include "base/observer_list.h" |
17 #include "chrome/browser/sync_file_system/remote_change_processor.h" | 17 #include "chrome/browser/sync_file_system/remote_change_processor.h" |
18 #include "webkit/fileapi/syncable/local_origin_change_observer.h" | 18 #include "webkit/browser/fileapi/syncable/local_origin_change_observer.h" |
19 #include "webkit/fileapi/syncable/sync_callbacks.h" | 19 #include "webkit/browser/fileapi/syncable/sync_callbacks.h" |
20 #include "webkit/fileapi/syncable/sync_status_code.h" | 20 #include "webkit/browser/fileapi/syncable/sync_status_code.h" |
21 | 21 |
22 class GURL; | 22 class GURL; |
23 class Profile; | 23 class Profile; |
24 | 24 |
25 namespace fileapi { | 25 namespace fileapi { |
26 class FileSystemContext; | 26 class FileSystemContext; |
27 } | 27 } |
28 | 28 |
29 namespace sync_file_system { | 29 namespace sync_file_system { |
30 | 30 |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 LocalChangeProcessor* local_change_processor_; | 213 LocalChangeProcessor* local_change_processor_; |
214 | 214 |
215 ObserverList<Observer> change_observers_; | 215 ObserverList<Observer> change_observers_; |
216 | 216 |
217 DISALLOW_COPY_AND_ASSIGN(LocalFileSyncService); | 217 DISALLOW_COPY_AND_ASSIGN(LocalFileSyncService); |
218 }; | 218 }; |
219 | 219 |
220 } // namespace sync_file_system | 220 } // namespace sync_file_system |
221 | 221 |
222 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_FILE_SYNC_SERVICE_H_ | 222 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_FILE_SYNC_SERVICE_H_ |
OLD | NEW |