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

Side by Side Diff: chrome/browser/policy/policy_loader_mac.h

Issue 56623005: Policy providers all get a SchemaRegistry to work with. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@chrome-policy-schema-9-purge-with-callback
Patch Set: rebase Created 7 years, 1 month 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
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 #ifndef CHROME_BROWSER_POLICY_POLICY_LOADER_MAC_H_ 5 #ifndef CHROME_BROWSER_POLICY_POLICY_LOADER_MAC_H_
6 #define CHROME_BROWSER_POLICY_POLICY_LOADER_MAC_H_ 6 #define CHROME_BROWSER_POLICY_POLICY_LOADER_MAC_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include <CoreFoundation/CoreFoundation.h> 10 #include <CoreFoundation/CoreFoundation.h>
11 11
12 #include "base/files/file_path.h" 12 #include "base/files/file_path.h"
13 #include "base/files/file_path_watcher.h" 13 #include "base/files/file_path_watcher.h"
14 #include "base/memory/ref_counted.h" 14 #include "base/memory/ref_counted.h"
15 #include "chrome/browser/policy/async_policy_loader.h" 15 #include "chrome/browser/policy/async_policy_loader.h"
16 #include "components/policy/core/common/policy_namespace.h"
16 17
17 class MacPreferences; 18 class MacPreferences;
18 19
19 namespace base { 20 namespace base {
20 class SequencedTaskRunner; 21 class SequencedTaskRunner;
21 class Value; 22 class Value;
22 } // namespace base 23 } // namespace base
23 24
24 namespace policy { 25 namespace policy {
25 26
26 class PolicyDomainDescriptor; 27 class PolicyBundle;
27 class PolicyMap; 28 class PolicyMap;
28 class Schema; 29 class Schema;
29 struct PolicyDefinitionList; 30 struct PolicyDefinitionList;
30 31
31 // A policy loader that loads policies from the Mac preferences system, and 32 // A policy loader that loads policies from the Mac preferences system, and
32 // watches the managed preferences files for updates. 33 // watches the managed preferences files for updates.
33 class PolicyLoaderMac : public AsyncPolicyLoader { 34 class PolicyLoaderMac : public AsyncPolicyLoader {
34 public: 35 public:
35 PolicyLoaderMac(scoped_refptr<base::SequencedTaskRunner> task_runner, 36 PolicyLoaderMac(scoped_refptr<base::SequencedTaskRunner> task_runner,
36 const PolicyDefinitionList* policy_list, 37 const PolicyDefinitionList* policy_list,
37 const base::FilePath& managed_policy_path, 38 const base::FilePath& managed_policy_path,
38 MacPreferences* preferences); 39 MacPreferences* preferences);
39 virtual ~PolicyLoaderMac(); 40 virtual ~PolicyLoaderMac();
40 41
41 // AsyncPolicyLoader implementation. 42 // AsyncPolicyLoader implementation.
42 virtual void InitOnBackgroundThread() OVERRIDE; 43 virtual void InitOnBackgroundThread() OVERRIDE;
43 virtual scoped_ptr<PolicyBundle> Load() OVERRIDE; 44 virtual scoped_ptr<PolicyBundle> Load() OVERRIDE;
44 virtual base::Time LastModificationTime() OVERRIDE; 45 virtual base::Time LastModificationTime() OVERRIDE;
45 46
46 // Converts a CFPropertyListRef to the equivalent base::Value. CFDictionary 47 // Converts a CFPropertyListRef to the equivalent base::Value. CFDictionary
47 // entries whose key is not a CFStringRef are ignored. 48 // entries whose key is not a CFStringRef are ignored.
48 // The returned value is owned by the caller. 49 // The returned value is owned by the caller.
49 // Returns NULL if an invalid CFType was found, such as CFDate or CFData. 50 // Returns NULL if an invalid CFType was found, such as CFDate or CFData.
50 static base::Value* CreateValueFromProperty(CFPropertyListRef property); 51 static base::Value* CreateValueFromProperty(CFPropertyListRef property);
51 52
52 private: 53 private:
53 // Callback for the FilePathWatcher. 54 // Callback for the FilePathWatcher.
54 void OnFileUpdated(const base::FilePath& path, bool error); 55 void OnFileUpdated(const base::FilePath& path, bool error);
55 56
56 // Loads policies for the components described in |descriptor|, which belong 57 // Loads policies for the components described in the current schema_map()
57 // to the domain |domain_name|, and stores them in the |bundle|. 58 // which belong to the domain |domain_name|, and stores them in the |bundle|.
58 void LoadPolicyForDomain( 59 void LoadPolicyForDomain(
59 scoped_refptr<const PolicyDomainDescriptor> descriptor, 60 PolicyDomain domain,
60 const std::string& domain_name, 61 const std::string& domain_name,
61 PolicyBundle* bundle); 62 PolicyBundle* bundle);
62 63
63 // Loads the policies described in |schema| from the bundle identified by 64 // Loads the policies described in |schema| from the bundle identified by
64 // |bundle_id_string|, and stores them in |policy|. 65 // |bundle_id_string|, and stores them in |policy|.
65 void LoadPolicyForComponent(const std::string& bundle_id_string, 66 void LoadPolicyForComponent(const std::string& bundle_id_string,
66 Schema schema, 67 const Schema& schema,
67 PolicyMap* policy); 68 PolicyMap* policy);
68 69
69 // List of recognized policies. 70 // List of recognized policies.
70 const PolicyDefinitionList* policy_list_; 71 const PolicyDefinitionList* policy_list_;
71 72
72 scoped_ptr<MacPreferences> preferences_; 73 scoped_ptr<MacPreferences> preferences_;
73 74
74 // Path to the managed preferences file for the current user, if it could 75 // Path to the managed preferences file for the current user, if it could
75 // be found. Updates of this file trigger a policy reload. 76 // be found. Updates of this file trigger a policy reload.
76 base::FilePath managed_policy_path_; 77 base::FilePath managed_policy_path_;
77 78
78 // Watches for events on the |managed_policy_path_|. 79 // Watches for events on the |managed_policy_path_|.
79 base::FilePathWatcher watcher_; 80 base::FilePathWatcher watcher_;
80 81
81 DISALLOW_COPY_AND_ASSIGN(PolicyLoaderMac); 82 DISALLOW_COPY_AND_ASSIGN(PolicyLoaderMac);
82 }; 83 };
83 84
84 } // namespace policy 85 } // namespace policy
85 86
86 #endif // CHROME_BROWSER_POLICY_POLICY_LOADER_MAC_H_ 87 #endif // CHROME_BROWSER_POLICY_POLICY_LOADER_MAC_H_
OLDNEW
« no previous file with comments | « chrome/browser/policy/policy_domain_descriptor_unittest.cc ('k') | chrome/browser/policy/policy_loader_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698