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

Side by Side Diff: webkit/renderer/media/webmediaplayer_params.cc

Issue 16514006: Update includes of message_loop_proxy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « webkit/renderer/media/webmediaplayer_impl.cc ('k') | webkit/support/simple_database_system.cc » ('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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "webkit/renderer/media/webmediaplayer_params.h" 5 #include "webkit/renderer/media/webmediaplayer_params.h"
6 6
7 #include "base/message_loop_proxy.h" 7 #include "base/message_loop/message_loop_proxy.h"
8 #include "media/base/audio_renderer_sink.h" 8 #include "media/base/audio_renderer_sink.h"
9 #include "media/base/media_log.h" 9 #include "media/base/media_log.h"
10 10
11 namespace webkit_media { 11 namespace webkit_media {
12 12
13 WebMediaPlayerParams::WebMediaPlayerParams( 13 WebMediaPlayerParams::WebMediaPlayerParams(
14 const scoped_refptr<base::MessageLoopProxy>& message_loop_proxy, 14 const scoped_refptr<base::MessageLoopProxy>& message_loop_proxy,
15 const scoped_refptr<media::AudioRendererSink>& audio_renderer_sink, 15 const scoped_refptr<media::AudioRendererSink>& audio_renderer_sink,
16 const scoped_refptr<media::GpuVideoDecoder::Factories>& gpu_factories, 16 const scoped_refptr<media::GpuVideoDecoder::Factories>& gpu_factories,
17 const scoped_refptr<media::MediaLog>& media_log) 17 const scoped_refptr<media::MediaLog>& media_log)
18 : message_loop_proxy_(message_loop_proxy), 18 : message_loop_proxy_(message_loop_proxy),
19 audio_renderer_sink_(audio_renderer_sink), 19 audio_renderer_sink_(audio_renderer_sink),
20 gpu_factories_(gpu_factories), 20 gpu_factories_(gpu_factories),
21 media_log_(media_log) { 21 media_log_(media_log) {
22 DCHECK(media_log_); 22 DCHECK(media_log_);
23 } 23 }
24 24
25 WebMediaPlayerParams::~WebMediaPlayerParams() {} 25 WebMediaPlayerParams::~WebMediaPlayerParams() {}
26 26
27 } // namespace webkit_media 27 } // namespace webkit_media
OLDNEW
« no previous file with comments | « webkit/renderer/media/webmediaplayer_impl.cc ('k') | webkit/support/simple_database_system.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698