| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef REMOTING_PROTOCOL_THIRD_PARTY_HOST_AUTHENTICATOR_H_ | 5 #ifndef REMOTING_PROTOCOL_THIRD_PARTY_HOST_AUTHENTICATOR_H_ |
| 6 #define REMOTING_PROTOCOL_THIRD_PARTY_HOST_AUTHENTICATOR_H_ | 6 #define REMOTING_PROTOCOL_THIRD_PARTY_HOST_AUTHENTICATOR_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/callback.h" | 10 #include "base/callback.h" |
| 11 #include "base/macros.h" |
| 11 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 12 #include "remoting/protocol/third_party_authenticator_base.h" | 13 #include "remoting/protocol/third_party_authenticator_base.h" |
| 13 | 14 |
| 14 namespace remoting { | 15 namespace remoting { |
| 15 | 16 |
| 16 class RsaKeyPair; | 17 class RsaKeyPair; |
| 17 | 18 |
| 18 namespace protocol { | 19 namespace protocol { |
| 19 | 20 |
| 20 class TokenValidator; | 21 class TokenValidator; |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 scoped_refptr<RsaKeyPair> key_pair_; | 53 scoped_refptr<RsaKeyPair> key_pair_; |
| 53 scoped_ptr<TokenValidator> token_validator_; | 54 scoped_ptr<TokenValidator> token_validator_; |
| 54 | 55 |
| 55 DISALLOW_COPY_AND_ASSIGN(ThirdPartyHostAuthenticator); | 56 DISALLOW_COPY_AND_ASSIGN(ThirdPartyHostAuthenticator); |
| 56 }; | 57 }; |
| 57 | 58 |
| 58 } // namespace protocol | 59 } // namespace protocol |
| 59 } // namespace remoting | 60 } // namespace remoting |
| 60 | 61 |
| 61 #endif // REMOTING_PROTOCOL_THIRD_PARTY_HOST_AUTHENTICATOR_H_ | 62 #endif // REMOTING_PROTOCOL_THIRD_PARTY_HOST_AUTHENTICATOR_H_ |
| OLD | NEW |