Alex Deymo | 2de23f5 | 2014-02-26 14:30:13 -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_REAL_STATE_H |
| 6 | #define CHROMEOS_PLATFORM_UPDATE_ENGINE_POLICY_MANAGER_REAL_STATE_H |
| 7 | |
Gilad Arnold | 5ef9c48 | 2014-03-03 13:51:02 -0800 | [diff] [blame^] | 8 | #include "update_engine/clock_interface.h" |
| 9 | #include "update_engine/dbus_wrapper_interface.h" |
Alex Deymo | 2de23f5 | 2014-02-26 14:30:13 -0800 | [diff] [blame] | 10 | #include "update_engine/policy_manager/state.h" |
| 11 | |
| 12 | namespace chromeos_policy_manager { |
| 13 | |
| 14 | // State implementation class. |
| 15 | class RealState : public State { |
| 16 | public: |
Gilad Arnold | 5ef9c48 | 2014-03-03 13:51:02 -0800 | [diff] [blame^] | 17 | RealState(chromeos_update_engine::DBusWrapperInterface* dbus, |
| 18 | chromeos_update_engine::ClockInterface* clock); |
Alex Deymo | 2de23f5 | 2014-02-26 14:30:13 -0800 | [diff] [blame] | 19 | ~RealState() {} |
| 20 | |
| 21 | private: |
| 22 | DISALLOW_COPY_AND_ASSIGN(RealState); |
| 23 | }; |
| 24 | |
| 25 | } // namespace chromeos_policy_manager |
| 26 | |
| 27 | #endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_POLICY_MANAGER_REAL_STATE_H |