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

Side by Side Diff: media/mojo/services/mojo_media_client.cc

Issue 2643743002: Mojify demuxers and allow running {Chunk/FFmpeg}Demuxer in a Utility Process (Closed)
Patch Set: Rebase and make sure to unbind mojom::DemuxerPtr on the bound thread during termination Created 3 years, 10 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 unified diff | Download patch
« no previous file with comments | « media/mojo/services/mojo_media_client.h ('k') | media/mojo/services/mojo_renderer_service.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "media/mojo/services/mojo_media_client.h" 5 #include "media/mojo/services/mojo_media_client.h"
6 6
7 #include "base/single_thread_task_runner.h" 7 #include "base/single_thread_task_runner.h"
8 #include "media/base/audio_decoder.h" 8 #include "media/base/audio_decoder.h"
9 #include "media/base/audio_renderer_sink.h" 9 #include "media/base/audio_renderer_sink.h"
10 #include "media/base/cdm_factory.h" 10 #include "media/base/cdm_factory.h"
11 #include "media/base/demuxer_factory.h"
11 #include "media/base/media_log.h" 12 #include "media/base/media_log.h"
12 #include "media/base/renderer_factory.h" 13 #include "media/base/renderer_factory.h"
13 #include "media/base/video_decoder.h" 14 #include "media/base/video_decoder.h"
14 #include "media/base/video_renderer_sink.h" 15 #include "media/base/video_renderer_sink.h"
15 16
16 namespace media { 17 namespace media {
17 18
18 MojoMediaClient::MojoMediaClient() {} 19 MojoMediaClient::MojoMediaClient() {}
19 20
20 MojoMediaClient::~MojoMediaClient() {} 21 MojoMediaClient::~MojoMediaClient() {}
(...skipping 24 matching lines...) Expand all
45 std::unique_ptr<RendererFactory> MojoMediaClient::CreateRendererFactory( 46 std::unique_ptr<RendererFactory> MojoMediaClient::CreateRendererFactory(
46 const scoped_refptr<MediaLog>& media_log) { 47 const scoped_refptr<MediaLog>& media_log) {
47 return nullptr; 48 return nullptr;
48 } 49 }
49 50
50 std::unique_ptr<CdmFactory> MojoMediaClient::CreateCdmFactory( 51 std::unique_ptr<CdmFactory> MojoMediaClient::CreateCdmFactory(
51 service_manager::mojom::InterfaceProvider* host_interfaces) { 52 service_manager::mojom::InterfaceProvider* host_interfaces) {
52 return nullptr; 53 return nullptr;
53 } 54 }
54 55
56 std::unique_ptr<DemuxerFactory> MojoMediaClient::CreateDemuxerFactory(
57 const scoped_refptr<MediaLog>& media_log) {
58 return nullptr;
59 }
60
55 } // namespace media 61 } // namespace media
OLDNEW
« no previous file with comments | « media/mojo/services/mojo_media_client.h ('k') | media/mojo/services/mojo_renderer_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698