| Index: remoting/host/security_key/fake_security_key_message_reader.h
|
| diff --git a/remoting/host/security_key/fake_remote_security_key_message_reader.h b/remoting/host/security_key/fake_security_key_message_reader.h
|
| similarity index 50%
|
| rename from remoting/host/security_key/fake_remote_security_key_message_reader.h
|
| rename to remoting/host/security_key/fake_security_key_message_reader.h
|
| index bfe7c685872aae27cb930a6b4571a37c44e9a9d0..9287c1efa13563b4b5e24435a6fd9bd830c88501 100644
|
| --- a/remoting/host/security_key/fake_remote_security_key_message_reader.h
|
| +++ b/remoting/host/security_key/fake_security_key_message_reader.h
|
| @@ -2,30 +2,29 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef REMOTING_HOST_SECURITY_KEY_FAKE_REMOTE_SECURITY_KEY_MESSAGE_READER_H_
|
| -#define REMOTING_HOST_SECURITY_KEY_FAKE_REMOTE_SECURITY_KEY_MESSAGE_READER_H_
|
| +#ifndef REMOTING_HOST_SECURITY_KEY_FAKE_SECURITY_KEY_MESSAGE_READER_H_
|
| +#define REMOTING_HOST_SECURITY_KEY_FAKE_SECURITY_KEY_MESSAGE_READER_H_
|
|
|
| #include "base/callback.h"
|
| #include "base/macros.h"
|
| #include "base/memory/weak_ptr.h"
|
| -#include "remoting/host/security_key/remote_security_key_message_reader.h"
|
| #include "remoting/host/security_key/security_key_message.h"
|
| +#include "remoting/host/security_key/security_key_message_reader.h"
|
|
|
| namespace remoting {
|
|
|
| -// Simulates the RemoteSecurityKeyMessageReader and provides access to data
|
| +// Simulates the SecurityKeyMessageReader and provides access to data
|
| // members for testing.
|
| -class FakeRemoteSecurityKeyMessageReader
|
| - : public RemoteSecurityKeyMessageReader {
|
| +class FakeSecurityKeyMessageReader : public SecurityKeyMessageReader {
|
| public:
|
| - FakeRemoteSecurityKeyMessageReader();
|
| - ~FakeRemoteSecurityKeyMessageReader() override;
|
| + FakeSecurityKeyMessageReader();
|
| + ~FakeSecurityKeyMessageReader() override;
|
|
|
| - // RemoteSecurityKeyMessageReader interface.
|
| + // SecurityKeyMessageReader interface.
|
| void Start(const SecurityKeyMessageCallback& message_callback,
|
| const base::Closure& error_callback) override;
|
|
|
| - base::WeakPtr<FakeRemoteSecurityKeyMessageReader> AsWeakPtr();
|
| + base::WeakPtr<FakeSecurityKeyMessageReader> AsWeakPtr();
|
|
|
| const SecurityKeyMessageCallback& message_callback() {
|
| return message_callback_;
|
| @@ -38,11 +37,11 @@ class FakeRemoteSecurityKeyMessageReader
|
| SecurityKeyMessageCallback message_callback_;
|
| base::Closure error_callback_;
|
|
|
| - base::WeakPtrFactory<FakeRemoteSecurityKeyMessageReader> weak_factory_;
|
| + base::WeakPtrFactory<FakeSecurityKeyMessageReader> weak_factory_;
|
|
|
| - DISALLOW_COPY_AND_ASSIGN(FakeRemoteSecurityKeyMessageReader);
|
| + DISALLOW_COPY_AND_ASSIGN(FakeSecurityKeyMessageReader);
|
| };
|
|
|
| } // namespace remoting
|
|
|
| -#endif // REMOTING_HOST_SECURITY_KEY_FAKE_REMOTE_SECURITY_KEY_MESSAGE_READER_H_
|
| +#endif // REMOTING_HOST_SECURITY_KEY_FAKE_SECURITY_KEY_MESSAGE_READER_H_
|
|
|