blob: 062ed26aace53b1ca0b3d8e74d78ab29ceeb6133 [file] [log] [blame]
Alex Deymo23949d42014-02-05 15:20:59 -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#include "update_engine/policy_manager/evaluation_context.h"
6
7using base::TimeDelta;
8
9namespace chromeos_policy_manager {
10
11TimeDelta EvaluationContext::RemainingTime() const {
12 // TODO(deymo): Return a timeout based on the elapsed time on the current
13 // policy request evaluation.
14 return TimeDelta::FromSeconds(1.);
15}
16
17} // namespace chromeos_policy_manager