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

Unified Diff: blimp/net/blob_channel/helium_blob_receiver_delegate.h

Issue 1970463004: Blimp: Add BlobChannel Helium messages and delegate impls. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 7 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
Index: blimp/net/blob_channel/helium_blob_receiver_delegate.h
diff --git a/blimp/net/blob_channel/helium_blob_receiver_delegate.h b/blimp/net/blob_channel/helium_blob_receiver_delegate.h
new file mode 100644
index 0000000000000000000000000000000000000000..f2f817d94f9aa66a7576aa21b63acb37459e23a5
--- /dev/null
+++ b/blimp/net/blob_channel/helium_blob_receiver_delegate.h
@@ -0,0 +1,43 @@
+// Copyright 2016 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.
+
+#ifndef BLIMP_NET_BLOB_CHANNEL_HELIUM_BLOB_RECEIVER_DELEGATE_H_
+#define BLIMP_NET_BLOB_CHANNEL_HELIUM_BLOB_RECEIVER_DELEGATE_H_
+
+#include <memory>
+
+#include "blimp/net/blimp_message_processor.h"
+#include "blimp/net/blimp_net_export.h"
+#include "blimp/net/blob_channel/blob_channel_receiver.h"
+#include "net/base/completion_callback.h"
+
+namespace blimp {
+
+// Receives and processes incoming blob messages in BlimpMessage format and
+// passes them to an attached BlobChannelReceiver.
+// The caller must provide the receiver object via SetReceiver() before any
+// messages can be processed.
+class BLIMP_NET_EXPORT HeliumBlobReceiverDelegate
+ : public BlobChannelReceiver::Delegate,
+ public BlimpMessageProcessor {
+ public:
+ HeliumBlobReceiverDelegate();
+ ~HeliumBlobReceiverDelegate() override;
+
+ // Sets the Receiver object which will take incoming blobs.
+ void SetReceiver(BlobChannelReceiver* receiver) override;
+
+ private:
+ // BlimpMessageProcessor implementation.
+ void ProcessMessage(std::unique_ptr<BlimpMessage> message,
+ const net::CompletionCallback& callback) override;
+
+ BlobChannelReceiver* receiver_ = nullptr;
+
+ DISALLOW_COPY_AND_ASSIGN(HeliumBlobReceiverDelegate);
+};
+
+} // namespace blimp
+
+#endif // BLIMP_NET_BLOB_CHANNEL_HELIUM_BLOB_RECEIVER_DELEGATE_H_
« no previous file with comments | « blimp/net/blob_channel/helium_blob_channel_unittest.cc ('k') | blimp/net/blob_channel/helium_blob_receiver_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698