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
3 // found in the LICENSE file.
5 #include "components/autofill/content/browser/wallet/mock_wallet_client.h"
10 MockWalletClient::MockWalletClient(net::URLRequestContextGetter
* context
,
11 wallet::WalletClientDelegate
* delegate
,
12 const GURL
& source_url
)
13 : wallet::WalletClient(context
, delegate
, source_url
) {}
15 MockWalletClient::~MockWalletClient() {}
17 void MockWalletClient::SaveToWallet(
18 scoped_ptr
<Instrument
> instrument
,
19 scoped_ptr
<Address
> address
,
20 const WalletItems::MaskedInstrument
* reference_instrument
,
21 const Address
* reference_address
) {
22 SaveToWalletMock(instrument
.get(),
29 } // namespace autofill