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

Side by Side Diff: chrome/renderer/media/webrtc_logging_handler_impl.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 | « cc/base/thread_impl.h ('k') | chrome/renderer/media/webrtc_logging_message_filter.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 "chrome/renderer/media/webrtc_logging_handler_impl.h" 5 #include "chrome/renderer/media/webrtc_logging_handler_impl.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/message_loop_proxy.h" 8 #include "base/message_loop/message_loop_proxy.h"
9 #include "chrome/common/partial_circular_buffer.h" 9 #include "chrome/common/partial_circular_buffer.h"
10 #include "chrome/renderer/media/webrtc_logging_message_filter.h" 10 #include "chrome/renderer/media/webrtc_logging_message_filter.h"
11 11
12 WebRtcLoggingHandlerImpl::WebRtcLoggingHandlerImpl( 12 WebRtcLoggingHandlerImpl::WebRtcLoggingHandlerImpl(
13 const scoped_refptr<base::MessageLoopProxy>& io_message_loop, 13 const scoped_refptr<base::MessageLoopProxy>& io_message_loop,
14 WebRtcLoggingMessageFilter* message_filter) 14 WebRtcLoggingMessageFilter* message_filter)
15 : io_message_loop_(io_message_loop), 15 : io_message_loop_(io_message_loop),
16 message_filter_(message_filter), 16 message_filter_(message_filter),
17 log_initialized_(false) { 17 log_initialized_(false) {
18 content::InitWebRtcLoggingDelegate(this); 18 content::InitWebRtcLoggingDelegate(this);
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 length, 66 length,
67 length / 2)); 67 length / 2));
68 } 68 }
69 69
70 void WebRtcLoggingHandlerImpl::OnOpenLogFailed() { 70 void WebRtcLoggingHandlerImpl::OnOpenLogFailed() {
71 DCHECK(CalledOnValidThread()); 71 DCHECK(CalledOnValidThread());
72 DLOG(ERROR) << "Could not open log."; 72 DLOG(ERROR) << "Could not open log.";
73 // TODO(grunell): Implement. 73 // TODO(grunell): Implement.
74 NOTIMPLEMENTED(); 74 NOTIMPLEMENTED();
75 } 75 }
OLDNEW
« no previous file with comments | « cc/base/thread_impl.h ('k') | chrome/renderer/media/webrtc_logging_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698