Index: components/policy/core/common/cloud/cloud_policy_client.cc |
diff --git a/components/policy/core/common/cloud/cloud_policy_client.cc b/components/policy/core/common/cloud/cloud_policy_client.cc |
index 687c36ba0199394f833fd9071daca135749382aa..0d68567a513b4b64fbba9472ed35554841924e5b 100644 |
--- a/components/policy/core/common/cloud/cloud_policy_client.cc |
+++ b/components/policy/core/common/cloud/cloud_policy_client.cc |
@@ -325,6 +325,21 @@ void CloudPolicyClient::FetchRemoteCommands( |
request_jobs_.back()->Start(job_callback); |
} |
+void CloudPolicyClient::GetDeviceAttributeUpdatePermission( |
Mattias Nissler (ping if slow)
2015/04/10 12:22:29
Don't you have a separate code change that adds th
Polina Bondarenko
2015/04/14 14:15:47
Done.
|
+ const std::string& auth_token, |
+ const CloudPolicyClient::StatusCallback& callback) { |
+ // TODO(pbond): Add DeviceAttributeUpdatePermission Request / Response |
+ callback.Run(true); |
+} |
+ |
+void CloudPolicyClient::UpdateDeviceAttributes(const std::string& auth_token, |
+ const std::string& asset_id, |
+ const std::string& location, |
+ const CloudPolicyClient::StatusCallback& callback) { |
+ // TODO(pbond): Add DeviceAttributeUpdate Request / Response |
+ callback.Run(true); |
+} |
+ |
void CloudPolicyClient::AddObserver(Observer* observer) { |
observers_.AddObserver(observer); |
} |