| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 "media/mojo/services/mojo_video_decoder.h" | 5 #include "media/mojo/services/mojo_video_decoder.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/location.h" | 8 #include "base/location.h" |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/single_thread_task_runner.h" | 10 #include "base/single_thread_task_runner.h" |
| 11 #include "base/thread_task_runner_handle.h" | 11 #include "base/threading/thread_task_runner_handle.h" |
| 12 | 12 |
| 13 namespace media { | 13 namespace media { |
| 14 | 14 |
| 15 MojoVideoDecoder::MojoVideoDecoder() { | 15 MojoVideoDecoder::MojoVideoDecoder() { |
| 16 DVLOG(1) << __FUNCTION__; | 16 DVLOG(1) << __FUNCTION__; |
| 17 } | 17 } |
| 18 | 18 |
| 19 MojoVideoDecoder::~MojoVideoDecoder() { | 19 MojoVideoDecoder::~MojoVideoDecoder() { |
| 20 DVLOG(1) << __FUNCTION__; | 20 DVLOG(1) << __FUNCTION__; |
| 21 } | 21 } |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 return true; | 65 return true; |
| 66 } | 66 } |
| 67 | 67 |
| 68 int MojoVideoDecoder::GetMaxDecodeRequests() const { | 68 int MojoVideoDecoder::GetMaxDecodeRequests() const { |
| 69 DVLOG(1) << __FUNCTION__; | 69 DVLOG(1) << __FUNCTION__; |
| 70 NOTIMPLEMENTED(); | 70 NOTIMPLEMENTED(); |
| 71 return 1; | 71 return 1; |
| 72 } | 72 } |
| 73 | 73 |
| 74 } // namespace media | 74 } // namespace media |
| OLD | NEW |