summaryrefslogtreecommitdiffstats
path: root/remoting/protocol/connection_to_host.cc
diff options
context:
space:
mode:
authorsimonmorris@chromium.org <simonmorris@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-31 14:20:06 +0000
committersimonmorris@chromium.org <simonmorris@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-31 14:20:06 +0000
commit4ea2c7cfa0f6a2177dedcf69b117408a868a4eb8 (patch)
treef3423e34f77859d918ed5af5b4345a7dd646f4c0 /remoting/protocol/connection_to_host.cc
parent22efa086fc27f192a1805d4bd62c576fe23580a4 (diff)
downloadchromium_src-4ea2c7cfa0f6a2177dedcf69b117408a868a4eb8.zip
chromium_src-4ea2c7cfa0f6a2177dedcf69b117408a868a4eb8.tar.gz
chromium_src-4ea2c7cfa0f6a2177dedcf69b117408a868a4eb8.tar.bz2
The authenticated_ fields are moved out of stubs and into
ClientSession. Messages to the stubs are dispatched via ClientSession, and the stub classes are pure virtual. BUG=none TEST=none Review URL: http://codereview.chromium.org/6724033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79991 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/protocol/connection_to_host.cc')
-rw-r--r--remoting/protocol/connection_to_host.cc7
1 files changed, 0 insertions, 7 deletions
diff --git a/remoting/protocol/connection_to_host.cc b/remoting/protocol/connection_to_host.cc
index bdf6f8b..9383d06 100644
--- a/remoting/protocol/connection_to_host.cc
+++ b/remoting/protocol/connection_to_host.cc
@@ -238,13 +238,6 @@ void ConnectionToHost::OnClientAuthenticated() {
// Create and enable the input stub now that we're authenticated.
input_stub_.reset(new InputSender(session_->event_channel()));
- input_stub_->OnAuthenticated();
-
- // Enable control channel stubs.
- if (host_stub_.get())
- host_stub_->OnAuthenticated();
- if (client_stub_)
- client_stub_->OnAuthenticated();
}
ConnectionToHost::State ConnectionToHost::state() const {