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 | // |
Gilad Arnold | b33e198 | 2014-01-27 14:46:27 -0800 | [diff] [blame^] | 10 | // Each state provider must implement a header file with the suffix "_vars.h", |
| 11 | // which declares all the variables owned by this provider declared as extern |
| 12 | // global pointers. |
| 13 | // |
| 14 | // extern Variable<SomeType>* var_providername_variablename; |
| 15 | // |
| 16 | // This file is just an aggregate of all variable declarations |
| 17 | // from the different providers. |
Alex Deymo | 8c49914 | 2014-01-02 19:33:34 -0800 | [diff] [blame] | 18 | |
Alex Deymo | ca0aaa6 | 2014-01-06 10:39:58 -0800 | [diff] [blame] | 19 | #include "policy_manager/random_vars.h" |
| 20 | |
Alex Deymo | 8c49914 | 2014-01-02 19:33:34 -0800 | [diff] [blame] | 21 | #endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_POLICY_MANAGER_ALL_VARIABLES_H |