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

Side by Side Diff: components/autofill/browser/wallet/instrument_unittest.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) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 "base/utf_string_conversions.h" 5 #include "base/utf_string_conversions.h"
6 #include "base/values.h" 6 #include "base/values.h"
7 #include "chrome/browser/autofill/wallet/instrument.h" 7 #include "components/autofill/browser/wallet/instrument.h"
8 #include "chrome/browser/autofill/wallet/wallet_address.h" 8 #include "components/autofill/browser/wallet/wallet_address.h"
9 #include "chrome/browser/autofill/wallet/wallet_test_util.h" 9 #include "components/autofill/browser/wallet/wallet_test_util.h"
10 #include "testing/gtest/include/gtest/gtest.h" 10 #include "testing/gtest/include/gtest/gtest.h"
11 11
12 namespace { 12 namespace {
13 13
14 const char kPrimaryAccountNumber[] = "4444444444444448"; 14 const char kPrimaryAccountNumber[] = "4444444444444448";
15 const char kCardVerificationNumber[] = "123"; 15 const char kCardVerificationNumber[] = "123";
16 const char kLastFourDigits[] = "4448"; 16 const char kLastFourDigits[] = "4448";
17 17
18 } 18 }
19 19
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 12, 180 12,
181 2015, 181 2015,
182 Instrument::VISA, 182 Instrument::VISA,
183 GetTestShippingAddress().Pass()); 183 GetTestShippingAddress().Pass());
184 184
185 EXPECT_TRUE(expected.Equals(instrument.ToDictionary().get())); 185 EXPECT_TRUE(expected.Equals(instrument.ToDictionary().get()));
186 } 186 }
187 187
188 } // namespace wallet 188 } // namespace wallet
189 } // namespace autofill 189 } // namespace autofill
OLDNEW
« no previous file with comments | « components/autofill/browser/wallet/instrument.cc ('k') | components/autofill/browser/wallet/required_action.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698