OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_STATUS_INFO_H_ | 5 #ifndef CHROME_BROWSER_POLICY_POLICY_STATUS_INFO_H_ |
6 #define CHROME_BROWSER_POLICY_POLICY_STATUS_INFO_H_ | 6 #define CHROME_BROWSER_POLICY_POLICY_STATUS_INFO_H_ |
| 7 #pragma once |
7 | 8 |
8 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
9 #include "base/string16.h" | 10 #include "base/string16.h" |
10 #include "base/values.h" | 11 #include "base/values.h" |
11 | 12 |
12 namespace policy { | 13 namespace policy { |
13 | 14 |
14 // Describes a policy's status on the client. | 15 // Describes a policy's status on the client. |
15 struct PolicyStatusInfo { | 16 struct PolicyStatusInfo { |
16 | 17 |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 static const char kSourceTypeDictPath[]; | 85 static const char kSourceTypeDictPath[]; |
85 static const char kStatusDictPath[]; | 86 static const char kStatusDictPath[]; |
86 static const char kValueDictPath[]; | 87 static const char kValueDictPath[]; |
87 | 88 |
88 DISALLOW_COPY_AND_ASSIGN(PolicyStatusInfo); | 89 DISALLOW_COPY_AND_ASSIGN(PolicyStatusInfo); |
89 }; | 90 }; |
90 | 91 |
91 } // namespace policy | 92 } // namespace policy |
92 | 93 |
93 #endif // CHROME_BROWSER_POLICY_POLICY_STATUS_INFO_H_ | 94 #endif // CHROME_BROWSER_POLICY_POLICY_STATUS_INFO_H_ |
OLD | NEW |