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_ASYNC_POLICY_LOADER_H_ | 5 #ifndef CHROME_BROWSER_POLICY_ASYNC_POLICY_LOADER_H_ |
6 #define CHROME_BROWSER_POLICY_ASYNC_POLICY_LOADER_H_ | 6 #define CHROME_BROWSER_POLICY_ASYNC_POLICY_LOADER_H_ |
7 #pragma once | |
8 | 7 |
9 #include "base/callback.h" | 8 #include "base/callback.h" |
10 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
11 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
12 #include "base/time.h" | 11 #include "base/time.h" |
13 | 12 |
14 namespace policy { | 13 namespace policy { |
15 | 14 |
16 class PolicyBundle; | 15 class PolicyBundle; |
17 | 16 |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 // wall clock times come from the same source, just in case there is some | 89 // wall clock times come from the same source, just in case there is some |
91 // non-local filesystem involved. | 90 // non-local filesystem involved. |
92 base::Time last_modification_clock_; | 91 base::Time last_modification_clock_; |
93 | 92 |
94 DISALLOW_COPY_AND_ASSIGN(AsyncPolicyLoader); | 93 DISALLOW_COPY_AND_ASSIGN(AsyncPolicyLoader); |
95 }; | 94 }; |
96 | 95 |
97 } // namespace policy | 96 } // namespace policy |
98 | 97 |
99 #endif // CHROME_BROWSER_POLICY_ASYNC_POLICY_LOADER_H_ | 98 #endif // CHROME_BROWSER_POLICY_ASYNC_POLICY_LOADER_H_ |
OLD | NEW |