| Index: remoting/protocol/me2me_host_authenticator_factory.h
|
| diff --git a/remoting/protocol/me2me_host_authenticator_factory.h b/remoting/protocol/me2me_host_authenticator_factory.h
|
| index 2563347d6a764f09a5a95a85b92a8a200f0ed606..69d8493d6e6d0f5609c5f03a43ad12bcb67c014b 100644
|
| --- a/remoting/protocol/me2me_host_authenticator_factory.h
|
| +++ b/remoting/protocol/me2me_host_authenticator_factory.h
|
| @@ -27,6 +27,7 @@ class Me2MeHostAuthenticatorFactory : public AuthenticatorFactory {
|
| public:
|
| // Create a factory that dispenses shared secret authenticators.
|
| static scoped_ptr<AuthenticatorFactory> CreateWithSharedSecret(
|
| + bool use_service_account,
|
| const std::string& host_owner,
|
| const std::string& local_cert,
|
| scoped_refptr<RsaKeyPair> key_pair,
|
| @@ -35,6 +36,7 @@ class Me2MeHostAuthenticatorFactory : public AuthenticatorFactory {
|
|
|
| // Create a factory that dispenses third party authenticators.
|
| static scoped_ptr<AuthenticatorFactory> CreateWithThirdPartyAuth(
|
| + bool use_service_account,
|
| const std::string& host_owner,
|
| const std::string& local_cert,
|
| scoped_refptr<RsaKeyPair> key_pair,
|
| @@ -56,6 +58,7 @@ class Me2MeHostAuthenticatorFactory : public AuthenticatorFactory {
|
|
|
| private:
|
| // Used for all host authenticators.
|
| + bool use_service_account_;
|
| std::string host_owner_;
|
| std::string local_cert_;
|
| scoped_refptr<RsaKeyPair> key_pair_;
|
|
|