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

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

Issue 18054007: Use a direct include of time headers in chrome_frame/, chromeos/, cloud_print/, components/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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/wallet_test_util.h" 5 #include "components/autofill/content/browser/wallet/wallet_test_util.h"
6 6
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/strings/string16.h" 10 #include "base/strings/string16.h"
11 #include "base/strings/utf_string_conversions.h" 11 #include "base/strings/utf_string_conversions.h"
12 #include "base/time.h" 12 #include "base/time/time.h"
13 #include "base/values.h" 13 #include "base/values.h"
14 #include "components/autofill/content/browser/wallet/full_wallet.h" 14 #include "components/autofill/content/browser/wallet/full_wallet.h"
15 #include "components/autofill/content/browser/wallet/instrument.h" 15 #include "components/autofill/content/browser/wallet/instrument.h"
16 #include "components/autofill/content/browser/wallet/required_action.h" 16 #include "components/autofill/content/browser/wallet/required_action.h"
17 #include "components/autofill/content/browser/wallet/wallet_address.h" 17 #include "components/autofill/content/browser/wallet/wallet_address.h"
18 18
19 namespace autofill { 19 namespace autofill {
20 namespace wallet { 20 namespace wallet {
21 21
22 namespace { 22 namespace {
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 return scoped_ptr<WalletItems>( 179 return scoped_ptr<WalletItems>(
180 new wallet::WalletItems(std::vector<RequiredAction>(), 180 new wallet::WalletItems(std::vector<RequiredAction>(),
181 "google_transaction_id", 181 "google_transaction_id",
182 "default_instrument_id", 182 "default_instrument_id",
183 "default_address_id", 183 "default_address_id",
184 "obfuscated_gaia_id")); 184 "obfuscated_gaia_id"));
185 } 185 }
186 186
187 } // namespace wallet 187 } // namespace wallet
188 } // namespace autofill 188 } // namespace autofill
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698