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

Side by Side Diff: content/renderer/media/media_stream_video_track.cc

Issue 1967823004: Fix include path for moved thread_task_runner_handle.h header in content/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: 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 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 "content/renderer/media/media_stream_video_track.h" 5 #include "content/renderer/media/media_stream_video_track.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/location.h" 10 #include "base/location.h"
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "base/single_thread_task_runner.h" 12 #include "base/single_thread_task_runner.h"
13 #include "base/thread_task_runner_handle.h" 13 #include "base/threading/thread_task_runner_handle.h"
14 14
15 namespace content { 15 namespace content {
16 16
17 namespace { 17 namespace {
18 void ResetCallback(std::unique_ptr<VideoCaptureDeliverFrameCB> callback) { 18 void ResetCallback(std::unique_ptr<VideoCaptureDeliverFrameCB> callback) {
19 // |callback| will be deleted when this exits. 19 // |callback| will be deleted when this exits.
20 } 20 }
21 21
22 // Empty method used for keeping a reference to the original media::VideoFrame. 22 // Empty method used for keeping a reference to the original media::VideoFrame.
23 // The reference to |frame| is kept in the closure that calls this method. 23 // The reference to |frame| is kept in the closure that calls this method.
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 } 282 }
283 283
284 void MediaStreamVideoTrack::OnReadyStateChanged( 284 void MediaStreamVideoTrack::OnReadyStateChanged(
285 blink::WebMediaStreamSource::ReadyState state) { 285 blink::WebMediaStreamSource::ReadyState state) {
286 DCHECK(main_render_thread_checker_.CalledOnValidThread()); 286 DCHECK(main_render_thread_checker_.CalledOnValidThread());
287 for (auto* sink : sinks_) 287 for (auto* sink : sinks_)
288 sink->OnReadyStateChanged(state); 288 sink->OnReadyStateChanged(state);
289 } 289 }
290 290
291 } // namespace content 291 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/media/media_stream_video_renderer_sink.cc ('k') | content/renderer/media/peer_connection_identity_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698