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

Unified Diff: media/gpu/ipc/service/media_channel.cc

Issue 2061823003: media: Drop "media::" in media/gpu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: work around clang format by adding an empty line Created 4 years, 6 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 | « media/gpu/ipc/service/media_channel.h ('k') | media/gpu/jpeg_decode_accelerator_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/gpu/ipc/service/media_channel.cc
diff --git a/media/gpu/ipc/service/media_channel.cc b/media/gpu/ipc/service/media_channel.cc
index f4bb4dead2b8b105a3d429583ac0f575ae76c986..0d1023180190ed3a1377e1406d32dd9c94e445e5 100644
--- a/media/gpu/ipc/service/media_channel.cc
+++ b/media/gpu/ipc/service/media_channel.cc
@@ -37,14 +37,14 @@ class MediaChannelDispatchHelper {
bool Send(IPC::Message* msg) { return channel_->Send(msg); }
- void OnCreateVideoDecoder(const media::VideoDecodeAccelerator::Config& config,
+ void OnCreateVideoDecoder(const VideoDecodeAccelerator::Config& config,
int32_t decoder_route_id,
IPC::Message* reply_message) {
channel_->OnCreateVideoDecoder(routing_id_, config, decoder_route_id,
reply_message);
}
- void OnCreateVideoEncoder(const media::CreateVideoEncoderParams& params,
+ void OnCreateVideoEncoder(const CreateVideoEncoderParams& params,
IPC::Message* reply_message) {
channel_->OnCreateVideoEncoder(routing_id_, params, reply_message);
}
@@ -95,7 +95,7 @@ void MediaChannel::OnCreateJpegDecoder(int32_t route_id,
void MediaChannel::OnCreateVideoDecoder(
int32_t command_buffer_route_id,
- const media::VideoDecodeAccelerator::Config& config,
+ const VideoDecodeAccelerator::Config& config,
int32_t decoder_route_id,
IPC::Message* reply_message) {
TRACE_EVENT0("gpu", "MediaChannel::OnCreateVideoDecoder");
@@ -117,10 +117,9 @@ void MediaChannel::OnCreateVideoDecoder(
// self-delete during destruction of this stub.
}
-void MediaChannel::OnCreateVideoEncoder(
- int32_t command_buffer_route_id,
- const media::CreateVideoEncoderParams& params,
- IPC::Message* reply_message) {
+void MediaChannel::OnCreateVideoEncoder(int32_t command_buffer_route_id,
+ const CreateVideoEncoderParams& params,
+ IPC::Message* reply_message) {
TRACE_EVENT0("gpu", "MediaChannel::OnCreateVideoEncoder");
gpu::GpuCommandBufferStub* stub =
channel_->LookupCommandBuffer(command_buffer_route_id);
« no previous file with comments | « media/gpu/ipc/service/media_channel.h ('k') | media/gpu/jpeg_decode_accelerator_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698