17dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch// Copyright 2013 The Chromium Authors. All rights reserved.
27dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch// Use of this source code is governed by a BSD-style license that can be
37dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch// found in the LICENSE file.
47dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch
57dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch#include "components/autofill/content/browser/wallet/mock_wallet_client.h"
67dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch
77dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdochnamespace autofill {
87dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdochnamespace wallet {
97dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch
107dbb3d5cf0c15f500944d211057644d6a2f37371Ben MurdochMockWalletClient::MockWalletClient(net::URLRequestContextGetter* context,
117dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch                                   wallet::WalletClientDelegate* delegate)
127dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch    : wallet::WalletClient(context, delegate) {}
137dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch
147dbb3d5cf0c15f500944d211057644d6a2f37371Ben MurdochMockWalletClient::~MockWalletClient() {}
157dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch
167dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch}  // namespace wallet
177dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch}  // namespace autofill
18