| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/user_policy_disk_cache.h" | 5 #include "chrome/browser/chromeos/policy/user_policy_disk_cache.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/files/file_util.h" | 8 #include "base/files/file_util.h" |
| 9 #include "base/location.h" | 9 #include "base/location.h" |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| 11 #include "base/message_loop/message_loop_proxy.h" | |
| 12 #include "base/metrics/histogram.h" | 11 #include "base/metrics/histogram.h" |
| 13 #include "base/sequenced_task_runner.h" | 12 #include "base/sequenced_task_runner.h" |
| 13 #include "base/thread_task_runner_handle.h" |
| 14 #include "components/policy/core/common/cloud/enterprise_metrics.h" | 14 #include "components/policy/core/common/cloud/enterprise_metrics.h" |
| 15 #include "policy/proto/device_management_local.pb.h" | 15 #include "policy/proto/device_management_local.pb.h" |
| 16 | 16 |
| 17 namespace em = enterprise_management; | 17 namespace em = enterprise_management; |
| 18 | 18 |
| 19 namespace policy { | 19 namespace policy { |
| 20 | 20 |
| 21 UserPolicyDiskCache::Delegate::~Delegate() {} | 21 UserPolicyDiskCache::Delegate::~Delegate() {} |
| 22 | 22 |
| 23 UserPolicyDiskCache::UserPolicyDiskCache( | 23 UserPolicyDiskCache::UserPolicyDiskCache( |
| 24 const base::WeakPtr<Delegate>& delegate, | 24 const base::WeakPtr<Delegate>& delegate, |
| 25 const base::FilePath& backing_file_path, | 25 const base::FilePath& backing_file_path, |
| 26 scoped_refptr<base::SequencedTaskRunner> background_task_runner) | 26 scoped_refptr<base::SequencedTaskRunner> background_task_runner) |
| 27 : delegate_(delegate), | 27 : delegate_(delegate), |
| 28 backing_file_path_(backing_file_path), | 28 backing_file_path_(backing_file_path), |
| 29 origin_task_runner_(base::MessageLoopProxy::current()), | 29 origin_task_runner_(base::ThreadTaskRunnerHandle::Get()), |
| 30 background_task_runner_(background_task_runner) {} | 30 background_task_runner_(background_task_runner) { |
| 31 } |
| 31 | 32 |
| 32 void UserPolicyDiskCache::Load() { | 33 void UserPolicyDiskCache::Load() { |
| 33 DCHECK(origin_task_runner_->RunsTasksOnCurrentThread()); | 34 DCHECK(origin_task_runner_->RunsTasksOnCurrentThread()); |
| 34 bool ret = background_task_runner_->PostTask( | 35 bool ret = background_task_runner_->PostTask( |
| 35 FROM_HERE, base::Bind(&UserPolicyDiskCache::LoadOnFileThread, this)); | 36 FROM_HERE, base::Bind(&UserPolicyDiskCache::LoadOnFileThread, this)); |
| 36 DCHECK(ret); | 37 DCHECK(ret); |
| 37 } | 38 } |
| 38 | 39 |
| 39 void UserPolicyDiskCache::Store( | 40 void UserPolicyDiskCache::Store( |
| 40 const em::CachedCloudPolicyResponse& policy) { | 41 const em::CachedCloudPolicyResponse& policy) { |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 kMetricPolicyStoreFailed, | 138 kMetricPolicyStoreFailed, |
| 138 policy::kMetricPolicySize); | 139 policy::kMetricPolicySize); |
| 139 return; | 140 return; |
| 140 } | 141 } |
| 141 UMA_HISTOGRAM_ENUMERATION(policy::kMetricPolicy, | 142 UMA_HISTOGRAM_ENUMERATION(policy::kMetricPolicy, |
| 142 kMetricPolicyStoreSucceeded, | 143 kMetricPolicyStoreSucceeded, |
| 143 policy::kMetricPolicySize); | 144 policy::kMetricPolicySize); |
| 144 } | 145 } |
| 145 | 146 |
| 146 } // namespace policy | 147 } // namespace policy |
| OLD | NEW |