diff options
Diffstat (limited to 'remoting/protocol/fake_authenticator.cc')
-rw-r--r-- | remoting/protocol/fake_authenticator.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remoting/protocol/fake_authenticator.cc b/remoting/protocol/fake_authenticator.cc index 9f2b4f6..c816cfa 100644 --- a/remoting/protocol/fake_authenticator.cc +++ b/remoting/protocol/fake_authenticator.cc @@ -168,7 +168,7 @@ scoped_ptr<buzz::XmlElement> FakeAuthenticator::GetNextMessage() { scoped_ptr<ChannelAuthenticator> FakeAuthenticator::CreateChannelAuthenticator() const { EXPECT_EQ(ACCEPTED, state()); - return scoped_ptr<ChannelAuthenticator>( + return make_scoped_ptr( new FakeChannelAuthenticator(action_ != REJECT_CHANNEL, async_)); } |