| Index: remoting/protocol/authenticator_test_base.h
|
| diff --git a/remoting/protocol/authenticator_test_base.h b/remoting/protocol/authenticator_test_base.h
|
| index fc4856c5ca5f8b0ccbc85a40e5c7867116cb3987..64d1c485b5b3396d829691d9b3c1658606431adf 100644
|
| --- a/remoting/protocol/authenticator_test_base.h
|
| +++ b/remoting/protocol/authenticator_test_base.h
|
| @@ -7,20 +7,20 @@
|
|
|
| #include <string>
|
|
|
| +#include "base/memory/ref_counted.h"
|
| #include "base/message_loop.h"
|
| #include "net/base/net_errors.h"
|
| #include "testing/gmock/include/gmock/gmock.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| -namespace crypto {
|
| -class RSAPrivateKey;
|
| -} // namespace crypto
|
| -
|
| namespace net {
|
| class StreamSocket;
|
| } // namespace net
|
|
|
| namespace remoting {
|
| +
|
| +class RsaKeyPair;
|
| +
|
| namespace protocol {
|
|
|
| class Authenticator;
|
| @@ -51,7 +51,7 @@ class AuthenticatorTestBase : public testing::Test {
|
|
|
| MessageLoop message_loop_;
|
|
|
| - scoped_ptr<crypto::RSAPrivateKey> private_key_;
|
| + scoped_refptr<RsaKeyPair> key_pair_;
|
| std::string host_cert_;
|
| scoped_ptr<Authenticator> host_;
|
| scoped_ptr<Authenticator> client_;
|
|
|