blob: 458805356307afc4fc406f1eaf44e68562788520 [file] [log] [blame]
Alex Deymoc705cc82014-02-19 11:15:00 -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 <string>
6
7#include "update_engine/policy_manager/chromeos_policy.h"
8
9using std::string;
10
11namespace chromeos_policy_manager {
12
13EvalStatus ChromeOSPolicy::UpdateCheckAllowed(EvaluationContext* ec,
14 string* error,
15 bool* result) const {
16 // TODO(deymo): Write this policy implementation with the actual policy.
17 *result = true;
18 return EvalStatusSucceeded;
19}
20
21} // namespace chromeos_policy_manager