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

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

Issue 2815303006: Convert MediaLog from being ref counted to owned by WebMediaPlayer. (Closed)
Patch Set: Rebase. Created 3 years, 8 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/test_mojo_media_client.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"
(...skipping 25 matching lines...) Expand all
36 const std::string& audio_device_id) { 36 const std::string& audio_device_id) {
37 return nullptr; 37 return nullptr;
38 } 38 }
39 39
40 std::unique_ptr<VideoRendererSink> MojoMediaClient::CreateVideoRendererSink( 40 std::unique_ptr<VideoRendererSink> MojoMediaClient::CreateVideoRendererSink(
41 const scoped_refptr<base::SingleThreadTaskRunner>& task_runner) { 41 const scoped_refptr<base::SingleThreadTaskRunner>& task_runner) {
42 return nullptr; 42 return nullptr;
43 } 43 }
44 44
45 std::unique_ptr<RendererFactory> MojoMediaClient::CreateRendererFactory( 45 std::unique_ptr<RendererFactory> MojoMediaClient::CreateRendererFactory(
46 const scoped_refptr<MediaLog>& media_log) { 46 MediaLog* media_log) {
47 return nullptr; 47 return nullptr;
48 } 48 }
49 49
50 std::unique_ptr<CdmFactory> MojoMediaClient::CreateCdmFactory( 50 std::unique_ptr<CdmFactory> MojoMediaClient::CreateCdmFactory(
51 service_manager::mojom::InterfaceProvider* host_interfaces) { 51 service_manager::mojom::InterfaceProvider* host_interfaces) {
52 return nullptr; 52 return nullptr;
53 } 53 }
54 54
55 } // namespace media 55 } // namespace media
OLDNEW
« no previous file with comments | « media/mojo/services/mojo_media_client.h ('k') | media/mojo/services/test_mojo_media_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698