| 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_WIN_H_ | 5 #ifndef CHROME_BROWSER_POLICY_POLICY_LOADER_WIN_H_ |
| 6 #define CHROME_BROWSER_POLICY_POLICY_LOADER_WIN_H_ | 6 #define CHROME_BROWSER_POLICY_POLICY_LOADER_WIN_H_ |
| 7 | 7 |
| 8 #include "base/synchronization/waitable_event.h" | 8 #include "base/synchronization/waitable_event.h" |
| 9 #include "base/win/object_watcher.h" | 9 #include "base/win/object_watcher.h" |
| 10 #include "chrome/browser/policy/async_policy_loader.h" | 10 #include "chrome/browser/policy/async_policy_loader.h" |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 extern const wchar_t kThirdParty[]; | 57 extern const wchar_t kThirdParty[]; |
| 58 // Registry key within an extension's namespace that contains mandatory | 58 // Registry key within an extension's namespace that contains mandatory |
| 59 // policy. | 59 // policy. |
| 60 extern const wchar_t kMandatory[]; | 60 extern const wchar_t kMandatory[]; |
| 61 // Registry key within an extension's namespace that contains recommended | 61 // Registry key within an extension's namespace that contains recommended |
| 62 // policy. | 62 // policy. |
| 63 extern const wchar_t kRecommended[]; | 63 extern const wchar_t kRecommended[]; |
| 64 // Registry key within an extension's namespace that contains the policy | 64 // Registry key within an extension's namespace that contains the policy |
| 65 // schema. | 65 // schema. |
| 66 extern const wchar_t kSchema[]; | 66 extern const wchar_t kSchema[]; |
| 67 // Key in a JSON schema that indicates the expected type. | |
| 68 extern const char kType[]; | |
| 69 // Key in a JSON schema that indicates the expected properties of an object. | |
| 70 extern const char kProperties[]; | |
| 71 // Key in a JSON schema that indicates the default schema for object | |
| 72 // properties. | |
| 73 extern const char kAdditionalProperties[]; | |
| 74 // Key in a JSON schema that indicates the expected type of list items. | |
| 75 extern const char kItems[]; | |
| 76 } // namespace registry_constants | 67 } // namespace registry_constants |
| 77 | 68 |
| 78 } // namespace policy | 69 } // namespace policy |
| 79 | 70 |
| 80 #endif // CHROME_BROWSER_POLICY_POLICY_LOADER_WIN_H_ | 71 #endif // CHROME_BROWSER_POLICY_POLICY_LOADER_WIN_H_ |
| OLD | NEW |