| Index: chromeos/dbus/fake_auth_policy_client.cc
|
| diff --git a/chromeos/dbus/fake_auth_policy_client.cc b/chromeos/dbus/fake_auth_policy_client.cc
|
| index a80298e272b2e4ea4d0b1f74dc0f8bbdd0c3d0fc..edcf52857d7b7d204e333fc71bf0a3470840f50b 100644
|
| --- a/chromeos/dbus/fake_auth_policy_client.cc
|
| +++ b/chromeos/dbus/fake_auth_policy_client.cc
|
| @@ -18,4 +18,15 @@ void FakeAuthPolicyClient::JoinAdDomain(const std::string& machine_name,
|
| callback.Run(authpolicy::AD_JOIN_ERROR_NONE);
|
| }
|
|
|
| +void FakeAuthPolicyClient::RefreshDevicePolicy(
|
| + const RefreshPolicyCallback& callback) {
|
| + callback.Run(true);
|
| +};
|
| +
|
| +void FakeAuthPolicyClient::RefreshUserPolicy(
|
| + const std::string& account_id,
|
| + const RefreshPolicyCallback& callback) {
|
| + callback.Run(true);
|
| +};
|
| +
|
| } // namespace chromeos
|
|
|