Chromium Code Reviews| Index: chrome/renderer/media/cast_udp_transport.h |
| diff --git a/chrome/renderer/media/cast_udp_transport.h b/chrome/renderer/media/cast_udp_transport.h |
| index a1aeb6de6565ca9c5f2d4756fb0a4442a3f63f65..7385388c2c7c38764495f9a25cc78042acc96157 100644 |
| --- a/chrome/renderer/media/cast_udp_transport.h |
| +++ b/chrome/renderer/media/cast_udp_transport.h |
| @@ -23,9 +23,13 @@ class CastUdpTransport { |
| // Specify the remote IP address and port. |
| void SetDestination(const net::IPEndPoint& remote_address); |
| + // Set options. |
| + void SetOptions(const std::string& options); |
|
Alpha Left Google
2014/09/09 00:30:46
I suggest this be base::DictionaryValue which is a
hubbe
2014/09/09 20:10:01
Done.
|
| + |
| private: |
| const scoped_refptr<CastSession> cast_session_; |
| net::IPEndPoint remote_address_; |
| + std::string options_; |
| base::WeakPtrFactory<CastUdpTransport> weak_factory_; |
| DISALLOW_COPY_AND_ASSIGN(CastUdpTransport); |