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

Side by Side Diff: chrome/renderer/media/cast_receiver_session.cc

Issue 1967773004: Fix include path for moved thread_task_runner_handle.h header in chrome/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: merge up to r393013 Created 4 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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/cast_receiver_session.h" 5 #include "chrome/renderer/media/cast_receiver_session.h"
6 6
7 #include <memory> 7 #include <memory>
8 8
9 #include "base/location.h" 9 #include "base/location.h"
10 #include "base/synchronization/waitable_event.h" 10 #include "base/synchronization/waitable_event.h"
11 #include "base/thread_task_runner_handle.h" 11 #include "base/threading/thread_task_runner_handle.h"
12 #include "chrome/renderer/media/cast_receiver_audio_valve.h" 12 #include "chrome/renderer/media/cast_receiver_audio_valve.h"
13 #include "content/public/renderer/render_thread.h" 13 #include "content/public/renderer/render_thread.h"
14 #include "media/base/audio_capturer_source.h" 14 #include "media/base/audio_capturer_source.h"
15 #include "media/base/bind_to_current_loop.h" 15 #include "media/base/bind_to_current_loop.h"
16 #include "media/base/video_capturer_source.h" 16 #include "media/base/video_capturer_source.h"
17 #include "third_party/WebKit/public/platform/WebMediaStream.h" 17 #include "third_party/WebKit/public/platform/WebMediaStream.h"
18 #include "third_party/WebKit/public/platform/WebMediaStreamSource.h" 18 #include "third_party/WebKit/public/platform/WebMediaStreamSource.h"
19 #include "third_party/WebKit/public/platform/WebMediaStreamTrack.h" 19 #include "third_party/WebKit/public/platform/WebMediaStreamTrack.h"
20 20
21 // This is a render thread object. 21 // This is a render thread object.
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 } 185 }
186 186
187 void CastReceiverSession::AudioCapturerSource::SetVolume(double volume) { 187 void CastReceiverSession::AudioCapturerSource::SetVolume(double volume) {
188 // not supported 188 // not supported
189 } 189 }
190 190
191 void CastReceiverSession::AudioCapturerSource::SetAutomaticGainControl( 191 void CastReceiverSession::AudioCapturerSource::SetAutomaticGainControl(
192 bool enable) { 192 bool enable) {
193 // not supported 193 // not supported
194 } 194 }
OLDNEW
« no previous file with comments | « chrome/renderer/media/cast_ipc_dispatcher_unittest.cc ('k') | chrome/renderer/media/cast_rtp_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698