| // Copyright (c) 2014 The Chromium OS Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "update_engine/update_manager/update_manager.h" |
| |
| #include "update_engine/update_manager/chromeos_policy.h" |
| #include "update_engine/update_manager/state.h" |
| |
| namespace chromeos_update_manager { |
| |
| UpdateManager::UpdateManager(chromeos_update_engine::ClockInterface* clock, |
| State* state) |
| : state_(state), clock_(clock) { |
| // TODO(deymo): Make it possible to replace this policy with a different |
| // implementation with a build-time flag. |
| policy_.reset(new ChromeOSPolicy()); |
| } |
| |
| } // namespace chromeos_update_manager |