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

Unified Diff: remoting/protocol/data_channel_manager.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/data_channel_manager.h ('k') | remoting/protocol/data_channel_manager_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/data_channel_manager.cc
diff --git a/remoting/protocol/data_channel_manager.cc b/remoting/protocol/data_channel_manager.cc
deleted file mode 100644
index c8f0782f38dafcef4d286a3b5bc5ed3d331bf49c..0000000000000000000000000000000000000000
--- a/remoting/protocol/data_channel_manager.cc
+++ /dev/null
@@ -1,39 +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/data_channel_manager.h"
-
-#include <utility>
-
-#include "base/logging.h"
-#include "remoting/protocol/message_pipe.h"
-
-namespace remoting {
-namespace protocol {
-
-DataChannelManager::DataChannelManager() = default;
-DataChannelManager::~DataChannelManager() = default;
-
-void DataChannelManager::RegisterCreateHandlerCallback(
- const std::string& prefix,
- CreateHandlerCallback constructor) {
- DCHECK(!prefix.empty());
- DCHECK(constructor);
- constructors_.push_back(std::make_pair(prefix, constructor));
-}
-
-bool DataChannelManager::OnIncomingDataChannel(
- const std::string& name,
- std::unique_ptr<MessagePipe> pipe) {
- for (auto& constructor : constructors_) {
- if (name.find(constructor.first) == 0) {
- constructor.second.Run(name, std::move(pipe));
- return true;
- }
- }
- return false;
-}
-
-} // namespace protocol
-} // namespace remoting
« no previous file with comments | « remoting/protocol/data_channel_manager.h ('k') | remoting/protocol/data_channel_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698