| Index: chromeos/login/auth/authpolicy_login_helper.cc
|
| diff --git a/chromeos/login/auth/authpolicy_login_helper.cc b/chromeos/login/auth/authpolicy_login_helper.cc
|
| index 19a1bbb05a81912b659351fd82e9e7c0e4cf1e2f..da82df59e204bb7bbbe1415979c7ecd196684037 100644
|
| --- a/chromeos/login/auth/authpolicy_login_helper.cc
|
| +++ b/chromeos/login/auth/authpolicy_login_helper.cc
|
| @@ -32,7 +32,7 @@ base::ScopedFD GetDataReadPipe(const std::string& data) {
|
|
|
| void AuthCallbackDoNothing(
|
| authpolicy::ErrorType /* error */,
|
| - const authpolicy::ActiveDirectoryAccountData& /* account_data */) {
|
| + const authpolicy::ActiveDirectoryAccountInfo& /* account_info */) {
|
| // Do nothing.
|
| }
|
|
|
| @@ -85,8 +85,8 @@ void AuthPolicyLoginHelper::OnJoinCallback(JoinCallback callback,
|
| void AuthPolicyLoginHelper::OnAuthCallback(
|
| AuthCallback callback,
|
| authpolicy::ErrorType error,
|
| - const authpolicy::ActiveDirectoryAccountData& account_data) {
|
| - std::move(callback).Run(error, account_data);
|
| + const authpolicy::ActiveDirectoryAccountInfo& account_info) {
|
| + std::move(callback).Run(error, account_info);
|
| }
|
|
|
| AuthPolicyLoginHelper::~AuthPolicyLoginHelper() {}
|
|
|