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_SYNC_FILE_SYSTEM_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_SYNC_FILE_SYSTEM_SERVICE_H_ |
6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_SYNC_FILE_SYSTEM_SERVICE_H_ | 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_SYNC_FILE_SYSTEM_SERVICE_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/callback_forward.h" | 12 #include "base/callback_forward.h" |
13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
14 #include "base/memory/scoped_vector.h" | 14 #include "base/memory/scoped_vector.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 "base/timer/timer.h" | |
18 #include "chrome/browser/sync/profile_sync_service_observer.h" | 17 #include "chrome/browser/sync/profile_sync_service_observer.h" |
19 #include "chrome/browser/sync_file_system/conflict_resolution_policy.h" | 18 #include "chrome/browser/sync_file_system/conflict_resolution_policy.h" |
20 #include "chrome/browser/sync_file_system/file_status_observer.h" | 19 #include "chrome/browser/sync_file_system/file_status_observer.h" |
21 #include "chrome/browser/sync_file_system/remote_file_sync_service.h" | 20 #include "chrome/browser/sync_file_system/remote_file_sync_service.h" |
22 #include "chrome/browser/sync_file_system/sync_callbacks.h" | 21 #include "chrome/browser/sync_file_system/sync_callbacks.h" |
23 #include "chrome/browser/sync_file_system/sync_process_runner.h" | 22 #include "chrome/browser/sync_file_system/sync_process_runner.h" |
24 #include "chrome/browser/sync_file_system/sync_service_state.h" | 23 #include "chrome/browser/sync_file_system/sync_service_state.h" |
25 #include "chrome/browser/sync_file_system/task_logger.h" | 24 #include "chrome/browser/sync_file_system/task_logger.h" |
26 #include "components/keyed_service/core/keyed_service.h" | 25 #include "components/keyed_service/core/keyed_service.h" |
27 #include "extensions/browser/extension_registry_observer.h" | 26 #include "extensions/browser/extension_registry_observer.h" |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 | 184 |
186 bool promoting_demoted_changes_; | 185 bool promoting_demoted_changes_; |
187 base::Closure idle_callback_; | 186 base::Closure idle_callback_; |
188 | 187 |
189 DISALLOW_COPY_AND_ASSIGN(SyncFileSystemService); | 188 DISALLOW_COPY_AND_ASSIGN(SyncFileSystemService); |
190 }; | 189 }; |
191 | 190 |
192 } // namespace sync_file_system | 191 } // namespace sync_file_system |
193 | 192 |
194 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_SYNC_FILE_SYSTEM_SERVICE_H_ | 193 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_SYNC_FILE_SYSTEM_SERVICE_H_ |
OLD | NEW |