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

Side by Side Diff: components/autofill/core/browser/webdata/autofill_profile_syncable_service.cc

Issue 2401223002: [Sync] Renaming sync/api* to sync/model*. (Closed)
Patch Set: Missed a comment in a DEPS file, and rebasing. Created 4 years, 2 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #include "components/autofill/core/browser/webdata/autofill_profile_syncable_ser vice.h" 5 #include "components/autofill/core/browser/webdata/autofill_profile_syncable_ser vice.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <utility> 9 #include <utility>
10 10
11 #include "base/guid.h" 11 #include "base/guid.h"
12 #include "base/location.h" 12 #include "base/location.h"
13 #include "base/logging.h" 13 #include "base/logging.h"
14 #include "base/strings/utf_string_conversions.h" 14 #include "base/strings/utf_string_conversions.h"
15 #include "components/autofill/core/browser/autofill_country.h" 15 #include "components/autofill/core/browser/autofill_country.h"
16 #include "components/autofill/core/browser/autofill_profile.h" 16 #include "components/autofill/core/browser/autofill_profile.h"
17 #include "components/autofill/core/browser/autofill_profile_comparator.h" 17 #include "components/autofill/core/browser/autofill_profile_comparator.h"
18 #include "components/autofill/core/browser/country_names.h" 18 #include "components/autofill/core/browser/country_names.h"
19 #include "components/autofill/core/browser/form_group.h" 19 #include "components/autofill/core/browser/form_group.h"
20 #include "components/autofill/core/browser/webdata/autofill_table.h" 20 #include "components/autofill/core/browser/webdata/autofill_table.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/sync/api/sync_error.h" 22 #include "components/sync/model/sync_error.h"
23 #include "components/sync/api/sync_error_factory.h" 23 #include "components/sync/model/sync_error_factory.h"
24 #include "components/sync/protocol/sync.pb.h" 24 #include "components/sync/protocol/sync.pb.h"
25 #include "components/webdata/common/web_database.h" 25 #include "components/webdata/common/web_database.h"
26 26
27 using base::ASCIIToUTF16; 27 using base::ASCIIToUTF16;
28 using base::UTF8ToUTF16; 28 using base::UTF8ToUTF16;
29 using base::UTF16ToUTF8; 29 using base::UTF16ToUTF8;
30 30
31 namespace autofill { 31 namespace autofill {
32 32
33 namespace { 33 namespace {
(...skipping 626 matching lines...) Expand 10 before | Expand all | Expand 10 after
660 } 660 }
661 661
662 AutofillProfileSyncableService::DataBundle::DataBundle() {} 662 AutofillProfileSyncableService::DataBundle::DataBundle() {}
663 663
664 AutofillProfileSyncableService::DataBundle::DataBundle( 664 AutofillProfileSyncableService::DataBundle::DataBundle(
665 const DataBundle& other) = default; 665 const DataBundle& other) = default;
666 666
667 AutofillProfileSyncableService::DataBundle::~DataBundle() {} 667 AutofillProfileSyncableService::DataBundle::~DataBundle() {}
668 668
669 } // namespace autofill 669 } // namespace autofill
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698