| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/policy/cloud_policy_subsystem.h" | 5 #include "chrome/browser/policy/cloud_policy_subsystem.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 device_token_fetcher_.get(), | 198 device_token_fetcher_.get(), |
| 199 data_store_, | 199 data_store_, |
| 200 notifier_.get())); | 200 notifier_.get())); |
| 201 } | 201 } |
| 202 | 202 |
| 203 CloudPolicyCacheBase* CloudPolicySubsystem::GetCloudPolicyCacheBase() const { | 203 CloudPolicyCacheBase* CloudPolicySubsystem::GetCloudPolicyCacheBase() const { |
| 204 return cloud_policy_cache_.get(); | 204 return cloud_policy_cache_.get(); |
| 205 } | 205 } |
| 206 | 206 |
| 207 CloudPolicySubsystem::CloudPolicySubsystem() | 207 CloudPolicySubsystem::CloudPolicySubsystem() |
| 208 : refresh_pref_name_(NULL) {} | 208 : refresh_pref_name_(NULL), |
| 209 data_store_(NULL) { |
| 210 } |
| 209 | 211 |
| 210 } // namespace policy | 212 } // namespace policy |
| OLD | NEW |