OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_CHROME_SYNC_CLIENT_H__ | 5 #ifndef CHROME_BROWSER_SYNC_CHROME_SYNC_CLIENT_H__ |
6 #define CHROME_BROWSER_SYNC_CHROME_SYNC_CLIENT_H__ | 6 #define CHROME_BROWSER_SYNC_CHROME_SYNC_CLIENT_H__ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "chrome/browser/sync/glue/extensions_activity_monitor.h" | 11 #include "chrome/browser/sync/glue/extensions_activity_monitor.h" |
12 #include "components/sync_driver/sync_client.h" | 12 #include "components/sync/driver/sync_client.h" |
13 | 13 |
14 class Profile; | 14 class Profile; |
15 | 15 |
16 namespace autofill { | 16 namespace autofill { |
17 class AutofillWebDataService; | 17 class AutofillWebDataService; |
18 } | 18 } |
19 | 19 |
20 namespace password_manager { | 20 namespace password_manager { |
21 class PasswordStore; | 21 class PasswordStore; |
22 } | 22 } |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 ExtensionsActivityMonitor extensions_activity_monitor_; | 99 ExtensionsActivityMonitor extensions_activity_monitor_; |
100 | 100 |
101 base::WeakPtrFactory<ChromeSyncClient> weak_ptr_factory_; | 101 base::WeakPtrFactory<ChromeSyncClient> weak_ptr_factory_; |
102 | 102 |
103 DISALLOW_COPY_AND_ASSIGN(ChromeSyncClient); | 103 DISALLOW_COPY_AND_ASSIGN(ChromeSyncClient); |
104 }; | 104 }; |
105 | 105 |
106 } // namespace browser_sync | 106 } // namespace browser_sync |
107 | 107 |
108 #endif // CHROME_BROWSER_SYNC_CHROME_SYNC_CLIENT_H__ | 108 #endif // CHROME_BROWSER_SYNC_CHROME_SYNC_CLIENT_H__ |
OLD | NEW |