summaryrefslogtreecommitdiffstats
path: root/blimp/net/engine_connection_manager.cc
diff options
context:
space:
mode:
authorkmarshall <kmarshall@chromium.org>2015-11-12 12:23:06 -0800
committerCommit bot <commit-bot@chromium.org>2015-11-12 20:24:04 +0000
commit3f89b699c0672552f6471e6d085c81500b40d4af (patch)
tree37e6117fe5e009beb12c662712a1d2f6ec3cb386 /blimp/net/engine_connection_manager.cc
parent8d64b57888d3859d25d2bb69e4fbf3a66e6471ca (diff)
downloadchromium_src-3f89b699c0672552f6471e6d085c81500b40d4af.zip
chromium_src-3f89b699c0672552f6471e6d085c81500b40d4af.tar.gz
chromium_src-3f89b699c0672552f6471e6d085c81500b40d4af.tar.bz2
Add interfaces for most major Blimp net components.
This CL contains interfaces and implementation stubs for network components. It will be used as a foundation for implementation work done in parallel. Other changes made to existing net code include: Rename BlimpMessageReceiver to BlimpMessageProcessor. Make BlimpMessageProcessor async-only. BUG=555012 R=wez@chromium.org,haibinlu@chromium.org Review URL: https://codereview.chromium.org/1429193002 Cr-Commit-Position: refs/heads/master@{#359375}
Diffstat (limited to 'blimp/net/engine_connection_manager.cc')
-rw-r--r--blimp/net/engine_connection_manager.cc27
1 files changed, 27 insertions, 0 deletions
diff --git a/blimp/net/engine_connection_manager.cc b/blimp/net/engine_connection_manager.cc
new file mode 100644
index 0000000..b38ed0f
--- /dev/null
+++ b/blimp/net/engine_connection_manager.cc
@@ -0,0 +1,27 @@
+// Copyright 2015 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 "blimp/net/engine_connection_manager.h"
+
+#include "base/logging.h"
+
+namespace blimp {
+
+EngineConnectionManager::EngineConnectionManager(
+ ConnectionHandler* engine_browser_session) {
+ NOTIMPLEMENTED();
+}
+
+EngineConnectionManager::~EngineConnectionManager() {}
+
+void EngineConnectionManager::StartListening() {
+ NOTIMPLEMENTED();
+}
+
+void EngineConnectionManager::HandleConnection(
+ scoped_ptr<BlimpConnection> connection) {
+ NOTIMPLEMENTED();
+}
+
+} // namespace blimp