| 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 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOCOMPLETE_SYNCABLE_SERVICE_H
_ | 4 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOCOMPLETE_SYNCABLE_SERVICE_H
_ |
| 5 #define COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOCOMPLETE_SYNCABLE_SERVICE_H
_ | 5 #define COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOCOMPLETE_SYNCABLE_SERVICE_H
_ |
| 6 | 6 |
| 7 #include <map> | 7 #include <map> |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| 11 #include <utility> | 11 #include <utility> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "base/macros.h" | 14 #include "base/macros.h" |
| 15 #include "base/scoped_observer.h" | 15 #include "base/scoped_observer.h" |
| 16 #include "base/supports_user_data.h" | 16 #include "base/supports_user_data.h" |
| 17 #include "base/threading/non_thread_safe.h" | 17 #include "base/threading/non_thread_safe.h" |
| 18 #include "components/autofill/core/browser/webdata/autofill_change.h" | 18 #include "components/autofill/core/browser/webdata/autofill_change.h" |
| 19 #include "components/autofill/core/browser/webdata/autofill_entry.h" | 19 #include "components/autofill/core/browser/webdata/autofill_entry.h" |
| 20 #include "components/autofill/core/browser/webdata/autofill_webdata_backend.h" | 20 #include "components/autofill/core/browser/webdata/autofill_webdata_backend.h" |
| 21 #include "components/autofill/core/browser/webdata/autofill_webdata_service.h" | 21 #include "components/autofill/core/browser/webdata/autofill_webdata_service.h" |
| 22 #include "components/autofill/core/browser/webdata/autofill_webdata_service_obse
rver.h" | 22 #include "components/autofill/core/browser/webdata/autofill_webdata_service_obse
rver.h" |
| 23 #include "components/sync/api/sync_change.h" | 23 #include "components/sync/model/sync_change.h" |
| 24 #include "components/sync/api/sync_data.h" | 24 #include "components/sync/model/sync_data.h" |
| 25 #include "components/sync/api/sync_error.h" | 25 #include "components/sync/model/sync_error.h" |
| 26 #include "components/sync/api/syncable_service.h" | 26 #include "components/sync/model/syncable_service.h" |
| 27 | 27 |
| 28 namespace browser_sync { | 28 namespace browser_sync { |
| 29 class FakeServerUpdater; | 29 class FakeServerUpdater; |
| 30 class ProfileSyncServiceAutofillTest; | 30 class ProfileSyncServiceAutofillTest; |
| 31 } // namespace browser_sync | 31 } // namespace browser_sync |
| 32 | 32 |
| 33 namespace syncer { | 33 namespace syncer { |
| 34 class SyncErrorFactory; | 34 class SyncErrorFactory; |
| 35 } // namespace syncer | 35 } // namespace syncer |
| 36 | 36 |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 std::unique_ptr<syncer::SyncErrorFactory> error_handler_; | 161 std::unique_ptr<syncer::SyncErrorFactory> error_handler_; |
| 162 | 162 |
| 163 syncer::SyncableService::StartSyncFlare flare_; | 163 syncer::SyncableService::StartSyncFlare flare_; |
| 164 | 164 |
| 165 DISALLOW_COPY_AND_ASSIGN(AutocompleteSyncableService); | 165 DISALLOW_COPY_AND_ASSIGN(AutocompleteSyncableService); |
| 166 }; | 166 }; |
| 167 | 167 |
| 168 } // namespace autofill | 168 } // namespace autofill |
| 169 | 169 |
| 170 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOCOMPLETE_SYNCABLE_SERVIC
E_H_ | 170 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOCOMPLETE_SYNCABLE_SERVIC
E_H_ |
| OLD | NEW |