blob: d6ffcee5c2eacb96f2c3fdae666a30406ce17d49 [file] [log] [blame]
// 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,
base::TimeDelta evaluation_timeout, State* state)
: state_(state), clock_(clock), evaluation_timeout_(evaluation_timeout) {
// 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