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

Unified Diff: chrome/renderer/media/cast_ipc_dispatcher.cc

Issue 388663003: Cast: Reshuffle files under media/cast (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: missing includes Created 6 years, 5 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
« no previous file with comments | « chrome/renderer/media/cast_ipc_dispatcher.h ('k') | chrome/renderer/media/cast_rtp_stream.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/media/cast_ipc_dispatcher.cc
diff --git a/chrome/renderer/media/cast_ipc_dispatcher.cc b/chrome/renderer/media/cast_ipc_dispatcher.cc
index d1c7f9ee3c8a8722e9b3c7d04d3bf59be2b2951b..2068bf02ecb6f81b846a7a4c14ab2eac0823c978 100644
--- a/chrome/renderer/media/cast_ipc_dispatcher.cc
+++ b/chrome/renderer/media/cast_ipc_dispatcher.cc
@@ -77,7 +77,7 @@ void CastIPCDispatcher::OnChannelClosing() {
void CastIPCDispatcher::OnReceivedPacket(
int32 channel_id,
- const media::cast::transport::Packet& packet) {
+ const media::cast::Packet& packet) {
CastTransportSenderIPC* sender = id_map_.Lookup(channel_id);
if (sender) {
sender->OnReceivedPacket(packet);
@@ -89,7 +89,7 @@ void CastIPCDispatcher::OnReceivedPacket(
void CastIPCDispatcher::OnNotifyStatusChange(
int32 channel_id,
- media::cast::transport::CastTransportStatus status) {
+ media::cast::CastTransportStatus status) {
CastTransportSenderIPC* sender = id_map_.Lookup(channel_id);
if (sender) {
sender->OnNotifyStatusChange(status);
« no previous file with comments | « chrome/renderer/media/cast_ipc_dispatcher.h ('k') | chrome/renderer/media/cast_rtp_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698