This source file includes following definitions.
- Build
#include "chrome/browser/password_manager/test_password_store_service.h"
#include "components/password_manager/core/browser/test_password_store.h"
KeyedService* TestPasswordStoreService::Build(
content::BrowserContext* ) {
scoped_refptr<PasswordStore> store(new TestPasswordStore);
if (!store || !store->Init(syncer::SyncableService::StartSyncFlare()))
return NULL;
return new TestPasswordStoreService(store);
}
TestPasswordStoreService::TestPasswordStoreService(
scoped_refptr<PasswordStore> password_store)
: PasswordStoreService(password_store) {}
TestPasswordStoreService::~TestPasswordStoreService() {}