| Index: chrome/browser/password_manager/mock_password_store.h
|
| diff --git a/chrome/browser/password_manager/mock_password_store.h b/chrome/browser/password_manager/mock_password_store.h
|
| index 5bc7720ae3b56c4141bfe07fc033b2f92061c2b5..ae58a0b7b8292ff6b0ff66c74cbe565933365cae 100644
|
| --- a/chrome/browser/password_manager/mock_password_store.h
|
| +++ b/chrome/browser/password_manager/mock_password_store.h
|
| @@ -9,13 +9,16 @@
|
| #include "content/public/common/password_form.h"
|
| #include "testing/gmock/include/gmock/gmock.h"
|
|
|
| -class Profile;
|
| +namespace content {
|
| +class BrowserContext;
|
| +}
|
|
|
| class MockPasswordStore : public PasswordStore {
|
| public:
|
| MockPasswordStore();
|
|
|
| - static scoped_refptr<RefcountedProfileKeyedService> Build(Profile* profile);
|
| + static scoped_refptr<RefcountedProfileKeyedService> Build(
|
| + content::BrowserContext* profile);
|
|
|
| MOCK_METHOD1(RemoveLogin, void(const content::PasswordForm&));
|
| MOCK_METHOD2(GetLogins,
|
|
|