Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(473)

Side by Side Diff: chrome/browser/chromeos/policy/user_policy_disk_cache.cc

Issue 486843004: Change base/file_utils.h includes to base/files/file_utils.h in chrome/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix bad merge Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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/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" 11 #include "base/message_loop/message_loop_proxy.h"
12 #include "base/metrics/histogram.h" 12 #include "base/metrics/histogram.h"
13 #include "base/sequenced_task_runner.h" 13 #include "base/sequenced_task_runner.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
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 kMetricPolicyStoreFailed, 137 kMetricPolicyStoreFailed,
138 policy::kMetricPolicySize); 138 policy::kMetricPolicySize);
139 return; 139 return;
140 } 140 }
141 UMA_HISTOGRAM_ENUMERATION(policy::kMetricPolicy, 141 UMA_HISTOGRAM_ENUMERATION(policy::kMetricPolicy,
142 kMetricPolicyStoreSucceeded, 142 kMetricPolicyStoreSucceeded,
143 policy::kMetricPolicySize); 143 policy::kMetricPolicySize);
144 } 144 }
145 145
146 } // namespace policy 146 } // namespace policy
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698