summaryrefslogtreecommitdiffstats
path: root/blimp/net/blimp_message_output_buffer.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/blimp_message_output_buffer.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/blimp_message_output_buffer.cc')
-rw-r--r--blimp/net/blimp_message_output_buffer.cc29
1 files changed, 29 insertions, 0 deletions
diff --git a/blimp/net/blimp_message_output_buffer.cc b/blimp/net/blimp_message_output_buffer.cc
new file mode 100644
index 0000000..c97ee2d
--- /dev/null
+++ b/blimp/net/blimp_message_output_buffer.cc
@@ -0,0 +1,29 @@
+// 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/blimp_message_output_buffer.h"
+
+#include "base/macros.h"
+
+namespace blimp {
+
+BlimpMessageOutputBuffer::BlimpMessageOutputBuffer() {
+ NOTIMPLEMENTED();
+}
+
+BlimpMessageOutputBuffer::~BlimpMessageOutputBuffer() {
+ NOTIMPLEMENTED();
+}
+
+void BlimpMessageOutputBuffer::ProcessMessage(
+ const BlimpMessage& message,
+ const net::CompletionCallback& callback) {
+ NOTIMPLEMENTED();
+}
+
+void BlimpMessageOutputBuffer::OnMessageCheckpoint(int64 message_id) {
+ NOTIMPLEMENTED();
+}
+
+} // namespace blimp