Alex Deymo | 23949d4 | 2014-02-05 15:20:59 -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 | #include "update_engine/policy_manager/evaluation_context.h" |
| 6 | |
| 7 | using base::TimeDelta; |
| 8 | |
| 9 | namespace chromeos_policy_manager { |
| 10 | |
| 11 | TimeDelta 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 |