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

Side by Side Diff: chromecast/renderer/media/cma_renderer.cc

Issue 1974473002: Fix include path for moved thread_task_runner_handle.h header in chromecast/ (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
« no previous file with comments | « chromecast/media/cma/test/mock_frame_provider.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "chromecast/renderer/media/cma_renderer.h" 5 #include "chromecast/renderer/media/cma_renderer.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <utility> 8 #include <utility>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/bind.h" 11 #include "base/bind.h"
12 #include "base/callback_helpers.h" 12 #include "base/callback_helpers.h"
13 #include "base/location.h" 13 #include "base/location.h"
14 #include "base/single_thread_task_runner.h" 14 #include "base/single_thread_task_runner.h"
15 #include "base/thread_task_runner_handle.h" 15 #include "base/threading/thread_task_runner_handle.h"
16 #include "chromecast/media/cma/base/balanced_media_task_runner_factory.h" 16 #include "chromecast/media/cma/base/balanced_media_task_runner_factory.h"
17 #include "chromecast/media/cma/base/cma_logging.h" 17 #include "chromecast/media/cma/base/cma_logging.h"
18 #include "chromecast/media/cma/base/demuxer_stream_adapter.h" 18 #include "chromecast/media/cma/base/demuxer_stream_adapter.h"
19 #include "chromecast/media/cma/pipeline/av_pipeline_client.h" 19 #include "chromecast/media/cma/pipeline/av_pipeline_client.h"
20 #include "chromecast/media/cma/pipeline/media_pipeline_client.h" 20 #include "chromecast/media/cma/pipeline/media_pipeline_client.h"
21 #include "chromecast/media/cma/pipeline/video_pipeline_client.h" 21 #include "chromecast/media/cma/pipeline/video_pipeline_client.h"
22 #include "chromecast/renderer/media/audio_pipeline_proxy.h" 22 #include "chromecast/renderer/media/audio_pipeline_proxy.h"
23 #include "chromecast/renderer/media/hole_frame_factory.h" 23 #include "chromecast/renderer/media/hole_frame_factory.h"
24 #include "chromecast/renderer/media/media_pipeline_proxy.h" 24 #include "chromecast/renderer/media/media_pipeline_proxy.h"
25 #include "chromecast/renderer/media/video_pipeline_proxy.h" 25 #include "chromecast/renderer/media/video_pipeline_proxy.h"
(...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after
476 is_pending_transition_ = true; 476 is_pending_transition_ = true;
477 } 477 }
478 478
479 void CmaRenderer::CompleteStateTransition(State new_state) { 479 void CmaRenderer::CompleteStateTransition(State new_state) {
480 state_ = new_state; 480 state_ = new_state;
481 is_pending_transition_ = false; 481 is_pending_transition_ = false;
482 } 482 }
483 483
484 } // namespace media 484 } // namespace media
485 } // namespace chromecast 485 } // namespace chromecast
OLDNEW
« no previous file with comments | « chromecast/media/cma/test/mock_frame_provider.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698