| 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 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "base/string16.h" | 9 #include "base/string16.h" |
| 10 #include "base/values.h" | 10 #include "base/values.h" |
| 11 #include "policy/configuration_policy_type.h" | |
| 12 | 11 |
| 13 namespace policy { | 12 namespace policy { |
| 14 | 13 |
| 15 // Describes a policy's status on the client. | 14 // Describes a policy's status on the client. |
| 16 struct PolicyStatusInfo { | 15 struct PolicyStatusInfo { |
| 17 | 16 |
| 18 // Defines the possible sources a policy can have. | 17 // Defines the possible sources a policy can have. |
| 19 enum PolicySourceType { | 18 enum PolicySourceType { |
| 20 USER, | 19 USER, |
| 21 DEVICE, | 20 DEVICE, |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 static const char kLevelDictPath[]; | 81 static const char kLevelDictPath[]; |
| 83 static const char kNameDictPath[]; | 82 static const char kNameDictPath[]; |
| 84 static const char kSetDictPath[]; | 83 static const char kSetDictPath[]; |
| 85 static const char kSourceTypeDictPath[]; | 84 static const char kSourceTypeDictPath[]; |
| 86 static const char kStatusDictPath[]; | 85 static const char kStatusDictPath[]; |
| 87 static const char kValueDictPath[]; | 86 static const char kValueDictPath[]; |
| 88 | 87 |
| 89 DISALLOW_COPY_AND_ASSIGN(PolicyStatusInfo); | 88 DISALLOW_COPY_AND_ASSIGN(PolicyStatusInfo); |
| 90 }; | 89 }; |
| 91 | 90 |
| 92 } // namespace policy | 91 } // namespace policy |
| 93 | 92 |
| 94 #endif // CHROME_BROWSER_POLICY_POLICY_STATUS_INFO_H_ | 93 #endif // CHROME_BROWSER_POLICY_POLICY_STATUS_INFO_H_ |
| OLD | NEW |