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

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

Issue 1686223002: Move InterfaceProvider into the shell::mojom namespace like the rest of the shell interfaces. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 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/service_factory_impl.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 namespace media { 7 namespace media {
8 8
9 MojoMediaClient::MojoMediaClient() {} 9 MojoMediaClient::MojoMediaClient() {}
10 10
11 MojoMediaClient::~MojoMediaClient() {} 11 MojoMediaClient::~MojoMediaClient() {}
12 12
13 void MojoMediaClient::Initialize() {} 13 void MojoMediaClient::Initialize() {}
14 14
15 scoped_ptr<RendererFactory> MojoMediaClient::CreateRendererFactory( 15 scoped_ptr<RendererFactory> MojoMediaClient::CreateRendererFactory(
16 const scoped_refptr<MediaLog>& media_log) { 16 const scoped_refptr<MediaLog>& media_log) {
17 return nullptr; 17 return nullptr;
18 } 18 }
19 19
20 AudioRendererSink* MojoMediaClient::CreateAudioRendererSink() { 20 AudioRendererSink* MojoMediaClient::CreateAudioRendererSink() {
21 return nullptr; 21 return nullptr;
22 } 22 }
23 23
24 VideoRendererSink* MojoMediaClient::CreateVideoRendererSink( 24 VideoRendererSink* MojoMediaClient::CreateVideoRendererSink(
25 const scoped_refptr<base::SingleThreadTaskRunner>& task_runner) { 25 const scoped_refptr<base::SingleThreadTaskRunner>& task_runner) {
26 return nullptr; 26 return nullptr;
27 } 27 }
28 28
29 scoped_ptr<CdmFactory> MojoMediaClient::CreateCdmFactory( 29 scoped_ptr<CdmFactory> MojoMediaClient::CreateCdmFactory(
30 mojo::InterfaceProvider* service_provider) { 30 mojo::shell::mojom::InterfaceProvider* service_provider) {
31 return nullptr; 31 return nullptr;
32 } 32 }
33 33
34 } // namespace media 34 } // namespace media
OLDNEW
« no previous file with comments | « media/mojo/services/mojo_media_client.h ('k') | media/mojo/services/service_factory_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698