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

Unified Diff: remoting/protocol/fake_message_pipe_wrapper.cc

Issue 2928133005: Revert of [Chromoting] Add DataChannelManager to manage optional incoming data channels (Closed)
Patch Set: Created 3 years, 6 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
« no previous file with comments | « remoting/protocol/fake_message_pipe_wrapper.h ('k') | remoting/protocol/named_message_pipe_handler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/fake_message_pipe_wrapper.cc
diff --git a/remoting/protocol/fake_message_pipe_wrapper.cc b/remoting/protocol/fake_message_pipe_wrapper.cc
deleted file mode 100644
index 7e1eafa38aa48514783a8a614d6db4f140097ba6..0000000000000000000000000000000000000000
--- a/remoting/protocol/fake_message_pipe_wrapper.cc
+++ /dev/null
@@ -1,45 +0,0 @@
-// Copyright 2017 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.
-
-#include "remoting/protocol/fake_message_pipe_wrapper.h"
-
-#include <utility>
-
-#include "base/logging.h"
-#include "remoting/base/compound_buffer.h"
-#include "remoting/protocol/fake_message_pipe.h"
-
-namespace remoting {
-namespace protocol {
-
-FakeMessagePipeWrapper::FakeMessagePipeWrapper(FakeMessagePipe* pipe)
- : pipe_(pipe) {
- DCHECK(pipe_);
-}
-
-FakeMessagePipeWrapper::~FakeMessagePipeWrapper() = default;
-
-void FakeMessagePipeWrapper::Start(EventHandler* event_handler) {
- pipe_->Start(event_handler);
-}
-
-void FakeMessagePipeWrapper::Send(google::protobuf::MessageLite* message,
- const base::Closure& done) {
- pipe_->Send(message, done);
-}
-
-void FakeMessagePipeWrapper::Receive(std::unique_ptr<CompoundBuffer> message) {
- pipe_->Receive(std::move(message));
-}
-
-void FakeMessagePipeWrapper::OpenPipe() {
- pipe_->OpenPipe();
-}
-
-void FakeMessagePipeWrapper::ClosePipe() {
- pipe_->ClosePipe();
-}
-
-} // namespace protocol
-} // namespace remoting
« no previous file with comments | « remoting/protocol/fake_message_pipe_wrapper.h ('k') | remoting/protocol/named_message_pipe_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698