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

Unified Diff: components/policy/core/common/cloud/cloud_policy_client.cc

Issue 975353002: Added OOBE Asset / Naming prompt (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added comments Created 5 years, 9 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
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);
}

Powered by Google App Engine
This is Rietveld 408576698