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_CONFIG_DIR_POLICY_LOADER_H_ | 5 #ifndef CHROME_BROWSER_POLICY_CONFIG_DIR_POLICY_LOADER_H_ |
6 #define CHROME_BROWSER_POLICY_CONFIG_DIR_POLICY_LOADER_H_ | 6 #define CHROME_BROWSER_POLICY_CONFIG_DIR_POLICY_LOADER_H_ |
7 #pragma once | |
8 | 7 |
9 #include "base/file_path.h" | 8 #include "base/file_path.h" |
10 #include "base/files/file_path_watcher.h" | 9 #include "base/files/file_path_watcher.h" |
11 #include "chrome/browser/policy/async_policy_loader.h" | 10 #include "chrome/browser/policy/async_policy_loader.h" |
12 #include "chrome/browser/policy/policy_constants.h" | 11 #include "chrome/browser/policy/policy_constants.h" |
13 | 12 |
14 namespace base { | 13 namespace base { |
15 class Value; | 14 class Value; |
16 } | 15 } |
17 | 16 |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 // |config_dir_|. | 55 // |config_dir_|. |
57 base::files::FilePathWatcher mandatory_watcher_; | 56 base::files::FilePathWatcher mandatory_watcher_; |
58 base::files::FilePathWatcher recommended_watcher_; | 57 base::files::FilePathWatcher recommended_watcher_; |
59 | 58 |
60 DISALLOW_COPY_AND_ASSIGN(ConfigDirPolicyLoader); | 59 DISALLOW_COPY_AND_ASSIGN(ConfigDirPolicyLoader); |
61 }; | 60 }; |
62 | 61 |
63 } // namespace policy | 62 } // namespace policy |
64 | 63 |
65 #endif // CHROME_BROWSER_POLICY_CONFIG_DIR_POLICY_LOADER_H_ | 64 #endif // CHROME_BROWSER_POLICY_CONFIG_DIR_POLICY_LOADER_H_ |
OLD | NEW |