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

Unified Diff: remoting/protocol/host_control_sender.cc

Issue 8574025: Refactor client channel dispatchers. (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/host_control_sender.h ('k') | remoting/protocol/input_sender.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/host_control_sender.cc
diff --git a/remoting/protocol/host_control_sender.cc b/remoting/protocol/host_control_sender.cc
deleted file mode 100644
index 7b0fe7aa27d4488da57652891d346273376c8ad2..0000000000000000000000000000000000000000
--- a/remoting/protocol/host_control_sender.cc
+++ /dev/null
@@ -1,33 +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/host_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 {
-
-HostControlSender::HostControlSender(base::MessageLoopProxy* message_loop,
- net::Socket* socket)
- : buffered_writer_(new BufferedSocketWriter(message_loop)) {
- buffered_writer_->Init(socket, BufferedSocketWriter::WriteFailedCallback());
-}
-
-HostControlSender::~HostControlSender() {
-}
-
-void HostControlSender::Close() {
- buffered_writer_->Close();
-}
-
-} // namespace protocol
-} // namespace remoting
« no previous file with comments | « remoting/protocol/host_control_sender.h ('k') | remoting/protocol/input_sender.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698