Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(18)

Side by Side Diff: components/autofill/core/browser/webdata/autofill_wallet_syncable_service.h

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_WALLET_SYNCABLE_SERVIC E_H_ 5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_WALLET_SYNCABLE_SERVIC E_H_
6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_WALLET_SYNCABLE_SERVIC E_H_ 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_WALLET_SYNCABLE_SERVIC E_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/supports_user_data.h" 9 #include "base/supports_user_data.h"
10 #include "base/threading/thread_checker.h" 10 #include "base/threading/thread_checker.h"
11 #include "sync/api/syncable_service.h" 11 #include "components/sync/api/syncable_service.h"
12 12
13 namespace autofill { 13 namespace autofill {
14 14
15 class AutofillWebDataBackend; 15 class AutofillWebDataBackend;
16 class AutofillWebDataService; 16 class AutofillWebDataService;
17 17
18 // Syncs masked cards (last 4 digits only) and addresses from the sync user's 18 // Syncs masked cards (last 4 digits only) and addresses from the sync user's
19 // Wallet account. 19 // Wallet account.
20 class AutofillWalletSyncableService 20 class AutofillWalletSyncableService
21 : public base::SupportsUserData::Data, 21 : public base::SupportsUserData::Data,
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 std::unique_ptr<syncer::SyncChangeProcessor> sync_processor_; 67 std::unique_ptr<syncer::SyncChangeProcessor> sync_processor_;
68 68
69 syncer::SyncableService::StartSyncFlare flare_; 69 syncer::SyncableService::StartSyncFlare flare_;
70 70
71 DISALLOW_COPY_AND_ASSIGN(AutofillWalletSyncableService); 71 DISALLOW_COPY_AND_ASSIGN(AutofillWalletSyncableService);
72 }; 72 };
73 73
74 } // namespace autofill 74 } // namespace autofill
75 75
76 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_WALLET_SYNCABLE_SER VICE_H_ 76 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_WALLET_SYNCABLE_SER VICE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698