Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(335)

Unified Diff: remoting/protocol/connection_to_host.cc

Issue 6724033: Remove authenticated_ fields from stubs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Tweak. Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: remoting/protocol/connection_to_host.cc
diff --git a/remoting/protocol/connection_to_host.cc b/remoting/protocol/connection_to_host.cc
index 59e4001f29cc5995ee73a5097364278d8c07eac0..1e2642d6b878d291e082d63c9b6ad87275719b2a 100644
--- a/remoting/protocol/connection_to_host.cc
+++ b/remoting/protocol/connection_to_host.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -236,13 +236,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 {

Powered by Google App Engine
This is Rietveld 408576698