blob: 3b3a5385859236a6e0ebf99285206e3d36da2533 [file] [log] [blame]
// Copyright 2017 The Chromium 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 CHROMEOS_SERVICES_SECURE_CHANNEL_FAKE_AUTHENTICATOR_H_
#define CHROMEOS_SERVICES_SECURE_CHANNEL_FAKE_AUTHENTICATOR_H_
#include "base/callback.h"
#include "base/macros.h"
#include "chromeos/services/secure_channel/authenticator.h"
namespace chromeos {
namespace secure_channel {
// A fake implementation of Authenticator to use in tests.
class FakeAuthenticator : public Authenticator {
public:
FakeAuthenticator();
~FakeAuthenticator() override;
// Authenticator:
void Authenticate(const AuthenticationCallback& callback) override;
AuthenticationCallback last_callback() { return last_callback_; }
private:
AuthenticationCallback last_callback_;
DISALLOW_COPY_AND_ASSIGN(FakeAuthenticator);
};
} // namespace secure_channel
} // namespace chromeos
#endif // CHROMEOS_SERVICES_SECURE_CHANNEL_FAKE_AUTHENTICATOR_H_