| 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..0d509deea5a30195c11b3ce5ee3efbe52a70bfb2 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::RefreshDevicePolicies(
|
| + const RefreshPoliciesCallback& callback) {
|
| + callback.Run(true);
|
| +};
|
| +
|
| +void FakeAuthPolicyClient::RefreshUserPolicies(
|
| + const std::string& account_id,
|
| + const RefreshPoliciesCallback& callback) {
|
| + callback.Run(true);
|
| +};
|
| +
|
| } // namespace chromeos
|
|
|