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

Unified Diff: chrome/browser/chromeos/policy/device_local_account_policy_store.cc

Issue 19733003: Implement cloud policy invalidations using the invalidation service framework. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 5 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: chrome/browser/chromeos/policy/device_local_account_policy_store.cc
diff --git a/chrome/browser/chromeos/policy/device_local_account_policy_store.cc b/chrome/browser/chromeos/policy/device_local_account_policy_store.cc
index 786a2c920f861ce4b88b89ec61561824729609e0..9dd5be1767fbee038cc2c14d4ef6608a2af5daba 100644
--- a/chrome/browser/chromeos/policy/device_local_account_policy_store.cc
+++ b/chrome/browser/chromeos/policy/device_local_account_policy_store.cc
@@ -76,7 +76,10 @@ void DeviceLocalAccountPolicyStore::UpdatePolicy(
return;
}
- InstallPolicy(validator->policy_data().Pass(), validator->payload().Pass());
+ InstallPolicy(
+ validator->policy_data().Pass(),
+ validator->payload().Pass(),
+ validator->hash_value());
Joao da Silva 2013/07/23 20:44:47 See comments in CloudPolicyStore: if the hash is c
Steve Condie 2013/07/24 01:42:04 Done.
// Exit the session when the lid is closed. The default behavior is to
// suspend while leaving the session running, which is not desirable for
// public sessions.

Powered by Google App Engine
This is Rietveld 408576698