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 #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 #pragma once | |
8 | 7 |
9 #include <CoreFoundation/CoreFoundation.h> | 8 #include <CoreFoundation/CoreFoundation.h> |
10 | 9 |
11 #include "base/file_path.h" | 10 #include "base/file_path.h" |
12 #include "base/files/file_path_watcher.h" | 11 #include "base/files/file_path_watcher.h" |
13 #include "chrome/browser/policy/async_policy_loader.h" | 12 #include "chrome/browser/policy/async_policy_loader.h" |
14 | 13 |
15 class MacPreferences; | 14 class MacPreferences; |
16 | 15 |
17 namespace base { | 16 namespace base { |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 | 55 |
57 // Watches for events on the |managed_policy_path_|. | 56 // Watches for events on the |managed_policy_path_|. |
58 base::files::FilePathWatcher watcher_; | 57 base::files::FilePathWatcher watcher_; |
59 | 58 |
60 DISALLOW_COPY_AND_ASSIGN(PolicyLoaderMac); | 59 DISALLOW_COPY_AND_ASSIGN(PolicyLoaderMac); |
61 }; | 60 }; |
62 | 61 |
63 } // namespace policy | 62 } // namespace policy |
64 | 63 |
65 #endif // CHROME_BROWSER_POLICY_POLICY_LOADER_MAC_H_ | 64 #endif // CHROME_BROWSER_POLICY_POLICY_LOADER_MAC_H_ |
OLD | NEW |