Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3294)

Unified Diff: chromeos/login/auth/authpolicy_login_helper.cc

Issue 2841103002: Chromad: Add GetUserStatus call into AuthPolicyClient (Closed)
Patch Set: Fix test build Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chromeos/login/auth/authpolicy_login_helper.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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() {}
« no previous file with comments | « chromeos/login/auth/authpolicy_login_helper.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698