| 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/macros.h" |
| 13 #include "base/stl_util.h" | 14 #include "base/stl_util.h" |
| 14 #include "base/values.h" | 15 #include "base/values.h" |
| 15 #include "chrome/browser/chrome_notification_types.h" | 16 #include "chrome/browser/chrome_notification_types.h" |
| 16 #include "chrome/browser/chromeos/policy/device_local_account.h" | 17 #include "chrome/browser/chromeos/policy/device_local_account.h" |
| 17 #include "chrome/browser/chromeos/profiles/profile_helper.h" | 18 #include "chrome/browser/chromeos/profiles/profile_helper.h" |
| 18 #include "chrome/browser/policy/profile_policy_connector.h" | 19 #include "chrome/browser/policy/profile_policy_connector.h" |
| 19 #include "chrome/browser/policy/profile_policy_connector_factory.h" | 20 #include "chrome/browser/policy/profile_policy_connector_factory.h" |
| 20 #include "chrome/browser/profiles/profile.h" | 21 #include "chrome/browser/profiles/profile.h" |
| 21 #include "chromeos/settings/cros_settings_names.h" | 22 #include "chromeos/settings/cros_settings_names.h" |
| 22 #include "chromeos/settings/cros_settings_provider.h" | 23 #include "chromeos/settings/cros_settings_provider.h" |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 307 void CloudExternalDataPolicyObserver::OnExternalDataFetched( | 308 void CloudExternalDataPolicyObserver::OnExternalDataFetched( |
| 308 const std::string& user_id, | 309 const std::string& user_id, |
| 309 scoped_ptr<std::string> data) { | 310 scoped_ptr<std::string> data) { |
| 310 FetchWeakPtrMap::iterator it = fetch_weak_ptrs_.find(user_id); | 311 FetchWeakPtrMap::iterator it = fetch_weak_ptrs_.find(user_id); |
| 311 DCHECK(it != fetch_weak_ptrs_.end()); | 312 DCHECK(it != fetch_weak_ptrs_.end()); |
| 312 fetch_weak_ptrs_.erase(it); | 313 fetch_weak_ptrs_.erase(it); |
| 313 delegate_->OnExternalDataFetched(policy_, user_id, data.Pass()); | 314 delegate_->OnExternalDataFetched(policy_, user_id, data.Pass()); |
| 314 } | 315 } |
| 315 | 316 |
| 316 } // namespace policy | 317 } // namespace policy |
| OLD | NEW |