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

Side by Side Diff: content/renderer/pepper/ppb_video_decoder_impl.cc

Issue 185403020: Make VEA client of command buffer; move sync. IPC to VDA/VEA::Initialize() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 85629196 fischman@ comments. Created 6 years, 9 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 | Annotate | Revision Log
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698