OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/pepper/ppb_video_decoder_impl.h" | 5 #include "content/renderer/pepper/ppb_video_decoder_impl.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/message_loop/message_loop.h" | 10 #include "base/message_loop/message_loop.h" |
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
287 | 287 |
288 void PPB_VideoDecoder_Impl::NotifyEndOfBitstreamBuffer( | 288 void PPB_VideoDecoder_Impl::NotifyEndOfBitstreamBuffer( |
289 int32 bitstream_buffer_id) { | 289 int32 bitstream_buffer_id) { |
290 RunBitstreamBufferCallback(bitstream_buffer_id, PP_OK); | 290 RunBitstreamBufferCallback(bitstream_buffer_id, PP_OK); |
291 } | 291 } |
292 | 292 |
293 void PPB_VideoDecoder_Impl::NotifyFlushDone() { | 293 void PPB_VideoDecoder_Impl::NotifyFlushDone() { |
294 RunFlushCallback(PP_OK); | 294 RunFlushCallback(PP_OK); |
295 } | 295 } |
296 | 296 |
297 void PPB_VideoDecoder_Impl::NotifyInitializeDone() { | |
298 NOTREACHED() << "PlatformVideoDecoder::Initialize() is synchronous!"; | |
299 } | |
300 | |
301 } // namespace content | 297 } // namespace content |
OLD | NEW |