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

Side by Side Diff: content/renderer/media/rtc_video_renderer.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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "content/renderer/media/rtc_video_renderer.h" 5 #include "content/renderer/media/rtc_video_renderer.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/debug/trace_event.h" 8 #include "base/debug/trace_event.h"
9 #include "base/location.h" 9 #include "base/location.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/message_loop_proxy.h" 11 #include "base/message_loop/message_loop_proxy.h"
12 #include "media/base/video_frame.h" 12 #include "media/base/video_frame.h"
13 #include "media/base/video_util.h" 13 #include "media/base/video_util.h"
14 #include "third_party/libjingle/source/talk/media/base/videoframe.h" 14 #include "third_party/libjingle/source/talk/media/base/videoframe.h"
15 15
16 using media::CopyYPlane; 16 using media::CopyYPlane;
17 using media::CopyUPlane; 17 using media::CopyUPlane;
18 using media::CopyVPlane; 18 using media::CopyVPlane;
19 19
20 namespace content { 20 namespace content {
21 21
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 133
134 if (state_ != kStarted) { 134 if (state_ != kStarted) {
135 return; 135 return;
136 } 136 }
137 137
138 TRACE_EVENT0("video", "DoRenderFrameOnMainThread"); 138 TRACE_EVENT0("video", "DoRenderFrameOnMainThread");
139 repaint_cb_.Run(video_frame); 139 repaint_cb_.Run(video_frame);
140 } 140 }
141 141
142 } // namespace content 142 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/media/rtc_video_decoder_bridge_tv.cc ('k') | content/renderer/media/stream_texture_factory_impl_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698