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

Side by Side Diff: components/policy/core/common/config_dir_policy_loader.cc

Issue 273153003: Remove stray platform_file.h from chrome and components (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove "using" Created 6 years, 7 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 "components/policy/core/common/config_dir_policy_loader.h" 5 #include "components/policy/core/common/config_dir_policy_loader.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 10
11 #include "base/bind.h" 11 #include "base/bind.h"
12 #include "base/bind_helpers.h" 12 #include "base/bind_helpers.h"
13 #include "base/file_util.h" 13 #include "base/file_util.h"
14 #include "base/files/file_enumerator.h" 14 #include "base/files/file_enumerator.h"
15 #include "base/json/json_file_value_serializer.h" 15 #include "base/json/json_file_value_serializer.h"
16 #include "base/json/json_reader.h" 16 #include "base/json/json_reader.h"
17 #include "base/logging.h" 17 #include "base/logging.h"
18 #include "base/platform_file.h"
19 #include "base/stl_util.h" 18 #include "base/stl_util.h"
20 #include "components/policy/core/common/policy_bundle.h" 19 #include "components/policy/core/common/policy_bundle.h"
21 #include "components/policy/core/common/policy_load_status.h" 20 #include "components/policy/core/common/policy_load_status.h"
22 21
23 namespace policy { 22 namespace policy {
24 23
25 namespace { 24 namespace {
26 25
27 // Subdirectories that contain the mandatory and recommended policies. 26 // Subdirectories that contain the mandatory and recommended policies.
28 const base::FilePath::CharType kMandatoryConfigDir[] = 27 const base::FilePath::CharType kMandatoryConfigDir[] =
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 } 222 }
224 } 223 }
225 224
226 void ConfigDirPolicyLoader::OnFileUpdated(const base::FilePath& path, 225 void ConfigDirPolicyLoader::OnFileUpdated(const base::FilePath& path,
227 bool error) { 226 bool error) {
228 if (!error) 227 if (!error)
229 Reload(false); 228 Reload(false);
230 } 229 }
231 230
232 } // namespace policy 231 } // namespace policy
OLDNEW
« no previous file with comments | « chrome/utility/media_galleries/itunes_library_parser.h ('k') | components/policy/core/common/policy_loader_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698