#ifndef CHROME_BROWSER_PASSWORD_MANAGER_NULL_PASSWORD_STORE_SERVICE_H_
#define CHROME_BROWSER_PASSWORD_MANAGER_NULL_PASSWORD_STORE_SERVICE_H_
#include "chrome/browser/password_manager/password_store_factory.h"
class PasswordStore;
namespace content {
class BrowserContext;
}
class NullPasswordStoreService : public PasswordStoreService {
public:
static KeyedService* Build(content::BrowserContext* profile);
private:
NullPasswordStoreService();
virtual ~NullPasswordStoreService();
DISALLOW_COPY_AND_ASSIGN(NullPasswordStoreService);
};
#endif