| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef BLIMP_NET_BLIMP_MESSAGE_MULTIPLEXER_H_ | 5 #ifndef BLIMP_NET_BLIMP_MESSAGE_MULTIPLEXER_H_ |
| 6 #define BLIMP_NET_BLIMP_MESSAGE_MULTIPLEXER_H_ | 6 #define BLIMP_NET_BLIMP_MESSAGE_MULTIPLEXER_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 public: | 25 public: |
| 26 // |output_processor|: A pointer to the MessageProcessor that will receive the | 26 // |output_processor|: A pointer to the MessageProcessor that will receive the |
| 27 // multiplexed message stream. | 27 // multiplexed message stream. |
| 28 explicit BlimpMessageMultiplexer(BlimpMessageProcessor* output_processor); | 28 explicit BlimpMessageMultiplexer(BlimpMessageProcessor* output_processor); |
| 29 | 29 |
| 30 ~BlimpMessageMultiplexer(); | 30 ~BlimpMessageMultiplexer(); |
| 31 | 31 |
| 32 // Creates a BlimpMessageProcessor object for sending messages of type |type|. | 32 // Creates a BlimpMessageProcessor object for sending messages of type |type|. |
| 33 // Any number of senders can be created at a time for a given type. | 33 // Any number of senders can be created at a time for a given type. |
| 34 std::unique_ptr<BlimpMessageProcessor> CreateSenderForType( | 34 std::unique_ptr<BlimpMessageProcessor> CreateSenderForType( |
| 35 BlimpMessage::Type type); | 35 BlimpMessage::FeatureCase feature_case); |
| 36 | 36 |
| 37 private: | 37 private: |
| 38 base::WeakPtrFactory<BlimpMessageProcessor> output_weak_factory_; | 38 base::WeakPtrFactory<BlimpMessageProcessor> output_weak_factory_; |
| 39 | 39 |
| 40 DISALLOW_COPY_AND_ASSIGN(BlimpMessageMultiplexer); | 40 DISALLOW_COPY_AND_ASSIGN(BlimpMessageMultiplexer); |
| 41 }; | 41 }; |
| 42 | 42 |
| 43 } // namespace blimp | 43 } // namespace blimp |
| 44 | 44 |
| 45 #endif // BLIMP_NET_BLIMP_MESSAGE_MULTIPLEXER_H_ | 45 #endif // BLIMP_NET_BLIMP_MESSAGE_MULTIPLEXER_H_ |
| OLD | NEW |