blob: 062ed26aace53b1ca0b3d8e74d78ab29ceeb6133 [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/policy_manager/evaluation_context.h"
using base::TimeDelta;
namespace chromeos_policy_manager {
TimeDelta EvaluationContext::RemainingTime() const {
// TODO(deymo): Return a timeout based on the elapsed time on the current
// policy request evaluation.
return TimeDelta::FromSeconds(1.);
}
} // namespace chromeos_policy_manager