blob: 94d7da2a880c90ed80f6529ea817991eddc0801a [file] [log] [blame]
// Copyright (c) 2011 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_MITIGATOR_H_
#define LOGIN_MANAGER_MOCK_MITIGATOR_H_
#include <string>
#include <base/macros.h>
#include <gmock/gmock.h>
#include "login_manager/owner_key_loss_mitigator.h"
namespace login_manager {
class PolicyKey;
class MockMitigator : public OwnerKeyLossMitigator {
public:
MockMitigator();
virtual ~MockMitigator();
MOCK_METHOD1(Mitigate, bool(const std::string&));
MOCK_METHOD0(Mitigating, bool());
private:
DISALLOW_COPY_AND_ASSIGN(MockMitigator);
};
} // namespace login_manager
#endif // LOGIN_MANAGER_MOCK_MITIGATOR_H_