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

Side by Side Diff: components/autofill/content/browser/wallet/full_wallet.cc

Issue 17392006: In components/autofill, move browser/ to core/browser/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to fix conflicts Created 7 years, 6 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/content/browser/wallet/full_wallet.h" 5 #include "components/autofill/content/browser/wallet/full_wallet.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/strings/string_number_conversions.h" 8 #include "base/strings/string_number_conversions.h"
9 #include "base/strings/utf_string_conversions.h" 9 #include "base/strings/utf_string_conversions.h"
10 #include "base/values.h" 10 #include "base/values.h"
11 #include "components/autofill/browser/credit_card.h" 11 #include "components/autofill/core/browser/credit_card.h"
12 12
13 namespace { 13 namespace {
14 14
15 const size_t kPanSize = 16; 15 const size_t kPanSize = 16;
16 const size_t kBinSize = 6; 16 const size_t kBinSize = 6;
17 const size_t kCvnSize = 3; 17 const size_t kCvnSize = 3;
18 18
19 } // anonymous namespace 19 } // anonymous namespace
20 20
21 namespace autofill { 21 namespace autofill {
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
274 } 274 }
275 275
276 const std::string& FullWallet::GetCvn() { 276 const std::string& FullWallet::GetCvn() {
277 if (cvn_.empty()) 277 if (cvn_.empty())
278 DecryptCardInfo(); 278 DecryptCardInfo();
279 return cvn_; 279 return cvn_;
280 } 280 }
281 281
282 } // namespace wallet 282 } // namespace wallet
283 } // namespace autofill 283 } // namespace autofill
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698