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

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

Issue 12434004: Move remaining Autofill code to //components/autofill. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix long lines Created 7 years, 9 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 "chrome/browser/autofill/wallet/wallet_items.h" 5 #include "components/autofill/browser/wallet/wallet_items.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/values.h" 8 #include "base/values.h"
9 #include "googleurl/src/gurl.h" 9 #include "googleurl/src/gurl.h"
10 #include "grit/webkit_resources.h" 10 #include "grit/webkit_resources.h"
11 #include "ui/base/resource/resource_bundle.h" 11 #include "ui/base/resource/resource_bundle.h"
12 #include "ui/gfx/image/image.h" 12 #include "ui/gfx/image/image.h"
13 13
14 namespace autofill { 14 namespace autofill {
15 namespace wallet { 15 namespace wallet {
(...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 required_actions_ == other.required_actions_ && 402 required_actions_ == other.required_actions_ &&
403 obfuscated_gaia_id_ == other.obfuscated_gaia_id_; 403 obfuscated_gaia_id_ == other.obfuscated_gaia_id_;
404 } 404 }
405 405
406 bool WalletItems::operator!=(const WalletItems& other) const { 406 bool WalletItems::operator!=(const WalletItems& other) const {
407 return !(*this == other); 407 return !(*this == other);
408 } 408 }
409 409
410 } // namespace wallet 410 } // namespace wallet
411 } // namespace autofill 411 } // namespace autofill
OLDNEW
« no previous file with comments | « components/autofill/browser/wallet/wallet_items.h ('k') | components/autofill/browser/wallet/wallet_items_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698