Index: chromeos/dbus/auth_policy_client.cc |
diff --git a/chromeos/dbus/auth_policy_client.cc b/chromeos/dbus/auth_policy_client.cc |
index cf2ed6b9faffdc08f427dee4e6d09550dde4d281..ce58f5da26d20e633ea23e6c392a036d5c0b310f 100644 |
--- a/chromeos/dbus/auth_policy_client.cc |
+++ b/chromeos/dbus/auth_policy_client.cc |
@@ -64,7 +64,9 @@ class AuthPolicyClientImpl : public AuthPolicyClient { |
dbus::MethodCall method_call(authpolicy::kAuthPolicyInterface, |
authpolicy::kAuthPolicyRefreshUserPolicy); |
dbus::MessageWriter writer(&method_call); |
- writer.AppendString(account_id.GetObjGuid()); |
+ // TODO(tnagel): Switch to GUID once authpolicyd, session_manager and |
+ // cryptohome support it, cf. https://crbug.com/677497. |
+ writer.AppendString(account_id.GetUserEmail()); |
proxy_->CallMethod( |
&method_call, dbus::ObjectProxy::TIMEOUT_USE_DEFAULT, |
base::Bind(&AuthPolicyClientImpl::HandleRefreshPolicyCallback, |