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

Unified Diff: remoting/protocol/client_control_sender.cc

Issue 8468022: Refactor channel dispatchers on the host side. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: - Created 9 years, 1 month 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
« no previous file with comments | « remoting/protocol/client_control_sender.h ('k') | remoting/protocol/connection_to_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/client_control_sender.cc
diff --git a/remoting/protocol/client_control_sender.cc b/remoting/protocol/client_control_sender.cc
deleted file mode 100644
index 0dc220bbb6db7e18b7c43eae17fe50466ed5aa5e..0000000000000000000000000000000000000000
--- a/remoting/protocol/client_control_sender.cc
+++ /dev/null
@@ -1,40 +0,0 @@
-// 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.
-
-// This stub is thread safe because of the use of BufferedSocketWriter.
-// BufferedSocketWriter buffers messages and send them on them right thread.
-
-#include "remoting/protocol/client_control_sender.h"
-
-#include "base/task.h"
-#include "remoting/protocol/buffered_socket_writer.h"
-#include "remoting/proto/control.pb.h"
-#include "remoting/proto/internal.pb.h"
-#include "remoting/protocol/util.h"
-
-namespace remoting {
-namespace protocol {
-
-ClientControlSender::ClientControlSender(base::MessageLoopProxy* message_loop,
- net::Socket* socket)
- : buffered_writer_(new BufferedSocketWriter(message_loop)) {
- buffered_writer_->Init(socket, BufferedSocketWriter::WriteFailedCallback());
-
- // Write legacy BeginSession message.
- protocol::ControlMessage message;
- message.mutable_begin_session_deprecated()->mutable_login_status()->
- set_success(true);
- buffered_writer_->Write(SerializeAndFrameMessage(message), base::Closure());
-}
-
-ClientControlSender::~ClientControlSender() {
-}
-
-
-void ClientControlSender::Close() {
- buffered_writer_->Close();
-}
-
-} // namespace protocol
-} // namespace remoting
« no previous file with comments | « remoting/protocol/client_control_sender.h ('k') | remoting/protocol/connection_to_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698