Chromium Code Reviews| Index: chrome/browser/policy/cloud_policy_data_store.h |
| diff --git a/chrome/browser/policy/cloud_policy_data_store.h b/chrome/browser/policy/cloud_policy_data_store.h |
| index 626bd70d1bbc1712e3d49f21b55bae1c3f8e93dd..6039360f89842becbe86b744405e971b3b2f9a11 100644 |
| --- a/chrome/browser/policy/cloud_policy_data_store.h |
| +++ b/chrome/browser/policy/cloud_policy_data_store.h |
| @@ -9,6 +9,7 @@ |
| #include <string> |
| #include "base/observer_list.h" |
| +#include "chrome/browser/policy/device_status_reporter.h" |
| #include "chrome/browser/policy/proto/device_management_backend.pb.h" |
| namespace policy { |
| @@ -93,6 +94,7 @@ class CloudPolicyDataStore { |
| bool token_cache_loaded() const; |
| const std::string& user_name() const; |
| UserAffiliation user_affiliation() const; |
| + DeviceStatusReporter* device_status_reporter(); |
|
Mattias Nissler (ping if slow)
2011/11/25 14:15:19
Since this is not actively reporting stuff, maybe
Patrick Dubroy
2011/11/29 18:01:46
Done.
|
| void AddObserver(Observer* observer); |
| void RemoveObserver(Observer* observer); |
| @@ -126,6 +128,8 @@ class CloudPolicyDataStore { |
| bool token_cache_loaded_; |
| + DeviceStatusReporter device_status_reporter_; |
| + |
| ObserverList<Observer, true> observer_list_; |
| DISALLOW_COPY_AND_ASSIGN(CloudPolicyDataStore); |