diff options
author | kmarshall <kmarshall@chromium.org> | 2015-11-12 12:23:06 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-11-12 20:24:04 +0000 |
commit | 3f89b699c0672552f6471e6d085c81500b40d4af (patch) | |
tree | 37e6117fe5e009beb12c662712a1d2f6ec3cb386 /blimp/net/blimp_message_output_buffer.cc | |
parent | 8d64b57888d3859d25d2bb69e4fbf3a66e6471ca (diff) | |
download | chromium_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.cc | 29 |
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 |