blob: fb3401e1a3c15d92a2fb71271ccf6020a4bf79d8 [file] [log] [blame]
Alex Deymo8c499142014-01-02 19:33:34 -08001// 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 Arnoldb33e1982014-01-27 14:46:27 -080010// 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 Deymo8c499142014-01-02 19:33:34 -080018
Alex Deymoca0aaa62014-01-06 10:39:58 -080019#include "policy_manager/random_vars.h"
20
Alex Deymo8c499142014-01-02 19:33:34 -080021#endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_POLICY_MANAGER_ALL_VARIABLES_H