OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/chromeos/policy/cloud_external_data_policy_observer.h" | 5 #include "chrome/browser/chromeos/policy/cloud_external_data_policy_observer.h" |
6 | 6 |
7 #include <set> | 7 #include <set> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/bind.h" | 10 #include "base/bind.h" |
11 #include "base/bind_helpers.h" | 11 #include "base/bind_helpers.h" |
12 #include "base/logging.h" | 12 #include "base/logging.h" |
13 #include "base/stl_util.h" | 13 #include "base/stl_util.h" |
14 #include "base/values.h" | 14 #include "base/values.h" |
15 #include "chrome/browser/chrome_notification_types.h" | 15 #include "chrome/browser/chrome_notification_types.h" |
16 #include "chrome/browser/chromeos/login/user.h" | 16 #include "chrome/browser/chromeos/login/user.h" |
17 #include "chrome/browser/chromeos/login/user_manager.h" | 17 #include "chrome/browser/chromeos/login/user_manager.h" |
18 #include "chrome/browser/chromeos/policy/device_local_account.h" | 18 #include "chrome/browser/chromeos/policy/device_local_account.h" |
19 #include "chrome/browser/policy/cloud/cloud_policy_core.h" | |
20 #include "chrome/browser/policy/cloud/cloud_policy_store.h" | |
21 #include "chrome/browser/policy/policy_service.h" | |
22 #include "chrome/browser/policy/profile_policy_connector.h" | 19 #include "chrome/browser/policy/profile_policy_connector.h" |
23 #include "chrome/browser/policy/profile_policy_connector_factory.h" | 20 #include "chrome/browser/policy/profile_policy_connector_factory.h" |
24 #include "chrome/browser/profiles/profile.h" | 21 #include "chrome/browser/profiles/profile.h" |
25 #include "chromeos/settings/cros_settings_names.h" | 22 #include "chromeos/settings/cros_settings_names.h" |
26 #include "chromeos/settings/cros_settings_provider.h" | 23 #include "chromeos/settings/cros_settings_provider.h" |
| 24 #include "components/policy/core/common/cloud/cloud_policy_core.h" |
| 25 #include "components/policy/core/common/cloud/cloud_policy_store.h" |
27 #include "components/policy/core/common/external_data_fetcher.h" | 26 #include "components/policy/core/common/external_data_fetcher.h" |
28 #include "components/policy/core/common/policy_namespace.h" | 27 #include "components/policy/core/common/policy_namespace.h" |
| 28 #include "components/policy/core/common/policy_service.h" |
29 #include "content/public/browser/notification_details.h" | 29 #include "content/public/browser/notification_details.h" |
30 #include "content/public/browser/notification_service.h" | 30 #include "content/public/browser/notification_service.h" |
31 #include "content/public/browser/notification_source.h" | 31 #include "content/public/browser/notification_source.h" |
32 | 32 |
33 namespace policy { | 33 namespace policy { |
34 | 34 |
35 // Helper class that observes a policy for a logged-in user, notifying the | 35 // Helper class that observes a policy for a logged-in user, notifying the |
36 // |parent_| whenever the external data reference for this user changes. | 36 // |parent_| whenever the external data reference for this user changes. |
37 class CloudExternalDataPolicyObserver::PolicyServiceObserver | 37 class CloudExternalDataPolicyObserver::PolicyServiceObserver |
38 : public PolicyService::Observer { | 38 : public PolicyService::Observer { |
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
308 void CloudExternalDataPolicyObserver::OnExternalDataFetched( | 308 void CloudExternalDataPolicyObserver::OnExternalDataFetched( |
309 const std::string& user_id, | 309 const std::string& user_id, |
310 scoped_ptr<std::string> data) { | 310 scoped_ptr<std::string> data) { |
311 FetchWeakPtrMap::iterator it = fetch_weak_ptrs_.find(user_id); | 311 FetchWeakPtrMap::iterator it = fetch_weak_ptrs_.find(user_id); |
312 DCHECK(it != fetch_weak_ptrs_.end()); | 312 DCHECK(it != fetch_weak_ptrs_.end()); |
313 fetch_weak_ptrs_.erase(it); | 313 fetch_weak_ptrs_.erase(it); |
314 delegate_->OnExternalDataFetched(policy_, user_id, data.Pass()); | 314 delegate_->OnExternalDataFetched(policy_, user_id, data.Pass()); |
315 } | 315 } |
316 | 316 |
317 } // namespace policy | 317 } // namespace policy |
OLD | NEW |