1// Copyright (c) 2012 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.
4
5#include "components/password_manager/core/browser/mock_password_store.h"
6
7namespace password_manager {
8
9MockPasswordStore::MockPasswordStore()
10    : PasswordStore(
11        base::MessageLoopProxy::current(),
12        base::MessageLoopProxy::current()) {
13}
14
15MockPasswordStore::~MockPasswordStore() {}
16
17}  // namespace password_manager
18