| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef MEDIA_BASE_ANDROID_MEDIA_TASK_RUNNER_H_ | |
| 6 #define MEDIA_BASE_ANDROID_MEDIA_TASK_RUNNER_H_ | |
| 7 | |
| 8 #include "base/single_thread_task_runner.h" | |
| 9 #include "media/base/media_export.h" | |
| 10 | |
| 11 namespace media { | |
| 12 | |
| 13 // Returns the task runner for the media thread. | |
| 14 MEDIA_EXPORT scoped_refptr<base::SingleThreadTaskRunner> GetMediaTaskRunner(); | |
| 15 | |
| 16 // Returns true if the MediaCodecPlayer (which works on Media thread) should be | |
| 17 // used. This behavior is controlled by a finch flag. | |
| 18 MEDIA_EXPORT bool UseMediaThreadForMediaPlayback(); | |
| 19 | |
| 20 } // namespace media | |
| 21 | |
| 22 #endif // MEDIA_BASE_ANDROID_MEDIA_TASK_RUNNER_H_ | |
| OLD | NEW |