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

Side by Side Diff: content/renderer/pepper/pepper_media_stream_video_track_host.cc

Issue 2884763002: Automated IWYU fix for TaskRunner includes. (Closed)
Patch Set: rebase on r472096 Created 3 years, 7 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
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 "content/renderer/pepper/pepper_media_stream_video_track_host.h" 5 #include "content/renderer/pepper/pepper_media_stream_video_track_host.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include "base/base64.h" 9 #include "base/base64.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "base/rand_util.h" 12 #include "base/rand_util.h"
13 #include "base/single_thread_task_runner.h"
13 #include "base/strings/utf_string_conversions.h" 14 #include "base/strings/utf_string_conversions.h"
14 #include "content/renderer/media/media_stream_video_source.h" 15 #include "content/renderer/media/media_stream_video_source.h"
15 #include "content/renderer/media/media_stream_video_track.h" 16 #include "content/renderer/media/media_stream_video_track.h"
16 #include "media/base/bind_to_current_loop.h" 17 #include "media/base/bind_to_current_loop.h"
17 #include "media/base/video_util.h" 18 #include "media/base/video_util.h"
18 #include "ppapi/c/pp_errors.h" 19 #include "ppapi/c/pp_errors.h"
19 #include "ppapi/c/ppb_media_stream_video_track.h" 20 #include "ppapi/c/ppb_media_stream_video_track.h"
20 #include "ppapi/c/ppb_video_frame.h" 21 #include "ppapi/c/ppb_video_frame.h"
21 #include "ppapi/host/dispatch_host_message.h" 22 #include "ppapi/host/dispatch_host_message.h"
22 #include "ppapi/host/host_message_context.h" 23 #include "ppapi/host/host_message_context.h"
(...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after
544 } 545 }
545 546
546 void PepperMediaStreamVideoTrackHost::OnTrackStarted( 547 void PepperMediaStreamVideoTrackHost::OnTrackStarted(
547 MediaStreamSource* source, 548 MediaStreamSource* source,
548 MediaStreamRequestResult result, 549 MediaStreamRequestResult result,
549 const blink::WebString& result_name) { 550 const blink::WebString& result_name) {
550 DVLOG(3) << "OnTrackStarted result: " << result; 551 DVLOG(3) << "OnTrackStarted result: " << result;
551 } 552 }
552 553
553 } // namespace content 554 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698