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

Side by Side Diff: components/autofill/browser/wallet/wallet_address.cc

Issue 14096009: [Autofill] Split off AutofillDataModel as a subclass of FormData. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Android compile Created 7 years, 8 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 | Annotate | Revision Log
OLDNEW
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 #include "components/autofill/browser/wallet/wallet_address.h" 5 #include "components/autofill/browser/wallet/wallet_address.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/string_util.h"
8 #include "base/utf_string_conversions.h" 9 #include "base/utf_string_conversions.h"
9 #include "base/values.h" 10 #include "base/values.h"
10 #include "components/autofill/browser/autofill_country.h" 11 #include "components/autofill/browser/autofill_country.h"
11 #include "components/autofill/browser/autofill_profile.h" 12 #include "components/autofill/browser/autofill_profile.h"
12 13
13 namespace autofill { 14 namespace autofill {
14 namespace wallet { 15 namespace wallet {
15 16
16 namespace { 17 namespace {
17 18
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 phone_number_ == other.phone_number_ && 281 phone_number_ == other.phone_number_ &&
281 object_id_ == other.object_id_; 282 object_id_ == other.object_id_;
282 } 283 }
283 284
284 bool Address::operator!=(const Address& other) const { 285 bool Address::operator!=(const Address& other) const {
285 return !(*this == other); 286 return !(*this == other);
286 } 287 }
287 288
288 } // namespace wallet 289 } // namespace wallet
289 } // namespace autofill 290 } // namespace autofill
OLDNEW
« no previous file with comments | « components/autofill/browser/personal_data_manager.cc ('k') | components/autofill/browser/webdata/autofill_change.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698