| Index: chromeos/login/auth/mock_authenticator.h
|
| diff --git a/chromeos/login/auth/mock_authenticator.h b/chromeos/login/auth/mock_authenticator.h
|
| index d4c5e8672c98c0e5d9261c9095cbdb3d801d5c1a..d887e59eb79ac7ea07da9ef26e668d3ebec67217 100644
|
| --- a/chromeos/login/auth/mock_authenticator.h
|
| +++ b/chromeos/login/auth/mock_authenticator.h
|
| @@ -13,9 +13,7 @@
|
| #include "chromeos/login/auth/user_context.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| -namespace content {
|
| -class BrowserContext;
|
| -}
|
| +class Profile;
|
|
|
| namespace chromeos {
|
|
|
| @@ -27,9 +25,9 @@
|
| const UserContext& expected_user_context);
|
|
|
| // Authenticator:
|
| - virtual void CompleteLogin(content::BrowserContext* context,
|
| + virtual void CompleteLogin(Profile* profile,
|
| const UserContext& user_context) override;
|
| - virtual void AuthenticateToLogin(content::BrowserContext* context,
|
| + virtual void AuthenticateToLogin(Profile* profile,
|
| const UserContext& user_context) override;
|
| virtual void AuthenticateToUnlock(const UserContext& user_context) override;
|
| virtual void LoginAsSupervisedUser(const UserContext& user_context) override;
|
|
|