Alex Deymo | 8c49914 | 2014-01-02 19:33:34 -0800 | [diff] [blame] | 1 | // Copyright (c) 2014 The Chromium OS Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef CHROMEOS_PLATFORM_UPDATE_ENGINE_POLICY_MANAGER_ALL_VARIABLES_H |
| 6 | #define CHROMEOS_PLATFORM_UPDATE_ENGINE_POLICY_MANAGER_ALL_VARIABLES_H |
| 7 | |
| 8 | // List of globally available variables exposed by the different providers. |
| 9 | // |
| 10 | // Each state provider should implement a header file with the suffix "_vars.h" |
| 11 | // with all the defined variable pointers, such as: |
| 12 | // Variable<MyType>* var_something; |
| 13 | // This file includes all the different provider's header files with these |
| 14 | // definitions. |
| 15 | |
Alex Deymo | ca0aaa6 | 2014-01-06 10:39:58 -0800 | [diff] [blame] | 16 | #include "policy_manager/random_vars.h" |
| 17 | |
Alex Deymo | 8c49914 | 2014-01-02 19:33:34 -0800 | [diff] [blame] | 18 | #endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_POLICY_MANAGER_ALL_VARIABLES_H |