#ifndef CHROME_BROWSER_PASSWORD_MANAGER_TEST_PASSWORD_STORE_SERVICE_H_
#define CHROME_BROWSER_PASSWORD_MANAGER_TEST_PASSWORD_STORE_SERVICE_H_
#include "chrome/browser/password_manager/password_store_factory.h"
class PasswordStore;
namespace content {
class BrowserContext;
}
class TestPasswordStoreService : public PasswordStoreService {
public:
static KeyedService* Build(content::BrowserContext* profile);
private:
explicit TestPasswordStoreService(
scoped_refptr<PasswordStore> password_store);
virtual ~TestPasswordStoreService();
DISALLOW_COPY_AND_ASSIGN(TestPasswordStoreService);
};
#endif