Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #include "chrome/renderer/media/cast_ipc_dispatcher.h" | 5 #include "chrome/renderer/media/cast_ipc_dispatcher.h" |
| 6 | 6 |
| 7 #include "chrome/common/cast_messages.h" | 7 #include "chrome/common/cast_messages.h" |
| 8 #include "chrome/renderer/media/cast_transport_sender_ipc.h" | 8 #include "chrome/renderer/media/cast_transport_sender_ipc.h" |
| 9 #include "ipc/ipc_message_macros.h" | 9 #include "ipc/ipc_message_macros.h" |
| 10 | 10 |
| 11 CastIPCDispatcher* CastIPCDispatcher::global_instance_ = NULL; | 11 CastIPCDispatcher* CastIPCDispatcher::global_instance_ = NULL; |
| 12 | 12 |
| 13 CastIPCDispatcher::CastIPCDispatcher( | 13 CastIPCDispatcher::CastIPCDispatcher( |
| 14 const scoped_refptr<base::MessageLoopProxy>& io_message_loop) | 14 const scoped_refptr<base::MessageLoopProxy>& io_message_loop) |
| 15 : channel_(NULL), | 15 : channel_(NULL), |
| 16 io_message_loop_(io_message_loop) { | 16 io_message_loop_(io_message_loop) { |
| 17 DCHECK(io_message_loop_); | 17 DCHECK(io_message_loop_); |
| 18 DCHECK(!global_instance_); | 18 DCHECK(!global_instance_); |
| 19 } | 19 } |
| 20 | 20 |
| 21 CastIPCDispatcher::~CastIPCDispatcher() { | 21 CastIPCDispatcher::~CastIPCDispatcher() { |
| 22 DCHECK(io_message_loop_->BelongsToCurrentThread()); | 22 DCHECK(io_message_loop_->BelongsToCurrentThread()); |
| 23 // Unfortunately, you do not always get a OnFilterRemoved call. | 23 DCHECK(!global_instance_); |
| 24 global_instance_ = NULL; | |
| 25 } | 24 } |
| 26 | 25 |
| 27 CastIPCDispatcher* CastIPCDispatcher::Get() { | 26 CastIPCDispatcher* CastIPCDispatcher::Get() { |
| 28 return global_instance_; | 27 return global_instance_; |
| 29 } | 28 } |
| 30 | 29 |
| 31 void CastIPCDispatcher::Send(IPC::Message* message) { | 30 void CastIPCDispatcher::Send(IPC::Message* message) { |
| 32 DCHECK(io_message_loop_->BelongsToCurrentThread()); | 31 DCHECK(io_message_loop_->BelongsToCurrentThread()); |
| 33 if (channel_) { | 32 if (channel_) { |
| 34 channel_->Send(message); | 33 channel_->Send(message); |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 67 void CastIPCDispatcher::OnFilterRemoved() { | 66 void CastIPCDispatcher::OnFilterRemoved() { |
| 68 DCHECK(io_message_loop_->BelongsToCurrentThread()); | 67 DCHECK(io_message_loop_->BelongsToCurrentThread()); |
| 69 DCHECK_EQ(this, global_instance_); | 68 DCHECK_EQ(this, global_instance_); |
| 70 global_instance_ = NULL; | 69 global_instance_ = NULL; |
| 71 channel_ = NULL; | 70 channel_ = NULL; |
| 72 } | 71 } |
| 73 | 72 |
| 74 void CastIPCDispatcher::OnChannelClosing() { | 73 void CastIPCDispatcher::OnChannelClosing() { |
| 75 DCHECK(io_message_loop_->BelongsToCurrentThread()); | 74 DCHECK(io_message_loop_->BelongsToCurrentThread()); |
| 76 DCHECK_EQ(this, global_instance_); | 75 DCHECK_EQ(this, global_instance_); |
| 76 global_instance_ = NULL; | |
|
acolwell GONE FROM CHROMIUM
2014/02/19 00:11:24
Doesn't the DCHECK in OnFilterRemoved() fire if yo
hubbe
2014/02/19 00:29:51
You're right. Fixed.
| |
| 77 channel_ = NULL; | 77 channel_ = NULL; |
| 78 } | 78 } |
| 79 | 79 |
| 80 void CastIPCDispatcher::OnReceivedPacket( | 80 void CastIPCDispatcher::OnReceivedPacket( |
| 81 int32 channel_id, | 81 int32 channel_id, |
| 82 const media::cast::transport::Packet& packet) { | 82 const media::cast::transport::Packet& packet) { |
| 83 CastTransportSenderIPC* sender = id_map_.Lookup(channel_id); | 83 CastTransportSenderIPC* sender = id_map_.Lookup(channel_id); |
| 84 if (sender) { | 84 if (sender) { |
| 85 sender->OnReceivedPacket(packet); | 85 sender->OnReceivedPacket(packet); |
| 86 } else { | 86 } else { |
| (...skipping 21 matching lines...) Expand all Loading... | |
| 108 base::TimeTicks time_sent, | 108 base::TimeTicks time_sent, |
| 109 uint32 rtp_timestamp) { | 109 uint32 rtp_timestamp) { |
| 110 CastTransportSenderIPC* sender = id_map_.Lookup(channel_id); | 110 CastTransportSenderIPC* sender = id_map_.Lookup(channel_id); |
| 111 if (sender) { | 111 if (sender) { |
| 112 sender->OnRtpStatistics(audio, sender_info, time_sent, rtp_timestamp); | 112 sender->OnRtpStatistics(audio, sender_info, time_sent, rtp_timestamp); |
| 113 } else { | 113 } else { |
| 114 LOG(ERROR) | 114 LOG(ERROR) |
| 115 << "CastIPCDispatcher::OnNotifystatusChange on non-existing channel."; | 115 << "CastIPCDispatcher::OnNotifystatusChange on non-existing channel."; |
| 116 } | 116 } |
| 117 } | 117 } |
| OLD | NEW |