| 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_LOCAL_LOCAL_FILE_SYNC_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_LOCAL_FILE_SYNC_SERVICE_H_ |
| 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_LOCAL_FILE_SYNC_SERVICE_H_ | 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_LOCAL_FILE_SYNC_SERVICE_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| 11 #include <set> | 11 #include <set> |
| 12 #include <string> | 12 #include <string> |
| 13 | 13 |
| 14 #include "base/callback.h" | 14 #include "base/callback.h" |
| 15 #include "base/macros.h" | 15 #include "base/macros.h" |
| 16 #include "base/memory/ref_counted.h" | 16 #include "base/memory/ref_counted.h" |
| 17 #include "base/memory/scoped_ptr.h" |
| 17 #include "base/memory/weak_ptr.h" | 18 #include "base/memory/weak_ptr.h" |
| 18 #include "base/observer_list.h" | 19 #include "base/observer_list.h" |
| 19 #include "chrome/browser/sync_file_system/local/local_origin_change_observer.h" | 20 #include "chrome/browser/sync_file_system/local/local_origin_change_observer.h" |
| 20 #include "chrome/browser/sync_file_system/remote_change_processor.h" | 21 #include "chrome/browser/sync_file_system/remote_change_processor.h" |
| 21 #include "chrome/browser/sync_file_system/sync_callbacks.h" | 22 #include "chrome/browser/sync_file_system/sync_callbacks.h" |
| 22 #include "chrome/browser/sync_file_system/sync_status_code.h" | 23 #include "chrome/browser/sync_file_system/sync_status_code.h" |
| 23 | 24 |
| 24 class GURL; | 25 class GURL; |
| 25 class Profile; | 26 class Profile; |
| 26 | 27 |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 GetLocalChangeProcessorCallback get_local_change_processor_; | 239 GetLocalChangeProcessorCallback get_local_change_processor_; |
| 239 | 240 |
| 240 base::ObserverList<Observer> change_observers_; | 241 base::ObserverList<Observer> change_observers_; |
| 241 | 242 |
| 242 DISALLOW_COPY_AND_ASSIGN(LocalFileSyncService); | 243 DISALLOW_COPY_AND_ASSIGN(LocalFileSyncService); |
| 243 }; | 244 }; |
| 244 | 245 |
| 245 } // namespace sync_file_system | 246 } // namespace sync_file_system |
| 246 | 247 |
| 247 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_LOCAL_FILE_SYNC_SERVICE_H_ | 248 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_LOCAL_FILE_SYNC_SERVICE_H_ |
| OLD | NEW |