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

Side by Side Diff: content/renderer/media/render_media_log.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/render_media_log.h" 5 #include "content/renderer/media/render_media_log.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "base/message_loop_proxy.h" 9 #include "base/message_loop/message_loop_proxy.h"
10 #include "content/common/view_messages.h" 10 #include "content/common/view_messages.h"
11 #include "content/renderer/render_thread_impl.h" 11 #include "content/renderer/render_thread_impl.h"
12 12
13 using base::Time; 13 using base::Time;
14 using base::TimeDelta; 14 using base::TimeDelta;
15 15
16 namespace content { 16 namespace content {
17 17
18 RenderMediaLog::RenderMediaLog() 18 RenderMediaLog::RenderMediaLog()
19 : render_loop_(base::MessageLoopProxy::current()), 19 : render_loop_(base::MessageLoopProxy::current()),
(...skipping 16 matching lines...) Expand all
36 last_ipc_send_time_ = curr_time; 36 last_ipc_send_time_ = curr_time;
37 DVLOG(1) << "media log events array size " << queued_media_events_.size(); 37 DVLOG(1) << "media log events array size " << queued_media_events_.size();
38 RenderThreadImpl::current()->Send( 38 RenderThreadImpl::current()->Send(
39 new ViewHostMsg_MediaLogEvents(queued_media_events_)); 39 new ViewHostMsg_MediaLogEvents(queued_media_events_));
40 queued_media_events_.clear(); 40 queued_media_events_.clear();
41 } 41 }
42 42
43 RenderMediaLog::~RenderMediaLog() {} 43 RenderMediaLog::~RenderMediaLog() {}
44 44
45 } // namespace content 45 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/media/peer_connection_handler_base.h ('k') | content/renderer/media/rtc_video_capture_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698