blob: 81616bdc4f66ca1f8d914701908110c684d973cd [file] [log] [blame]
// Copyright 2016 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.
#ifndef LOGIN_MANAGER_MOCK_VPD_PROCESS_H_
#define LOGIN_MANAGER_MOCK_VPD_PROCESS_H_
#include <string>
#include <vector>
#include <gmock/gmock.h>
#include "login_manager/vpd_process.h"
#include "login_manager/vpd_process_impl.h"
namespace login_manager {
class SystemUtils;
class MockVpdProcess : public VpdProcess {
public:
MockVpdProcess() : VpdProcess() {}
MOCK_METHOD3(RunInBackground, bool(const std::vector<std::string>& flags,
const std::vector<int>& values,
const PolicyService::Completion&
completion));
};
} // namespace login_manager
#endif // LOGIN_MANAGER_MOCK_VPD_PROCESS_H_