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

Unified Diff: ppapi/cpp/dev/video_decoder_dev.cc

Issue 6961018: Pepper Video Decoder API tester plugin. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More implementation meat and clearing things all around. Created 9 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 side-by-side diff with in-line comments
Download patch
Index: ppapi/cpp/dev/video_decoder_dev.cc
diff --git a/ppapi/cpp/dev/video_decoder_dev.cc b/ppapi/cpp/dev/video_decoder_dev.cc
index 504530a29616642ddb08da314695e13f02a0d2cb..06978a23ed9691d522c5cdf0a0870fb13e756c1b 100644
--- a/ppapi/cpp/dev/video_decoder_dev.cc
+++ b/ppapi/cpp/dev/video_decoder_dev.cc
@@ -46,14 +46,15 @@ vector<uint32_t> VideoDecoder::GetConfigs(
return matching_configs;
}
-void VideoDecoder::AssignGLESBuffers(uint32_t /* no_of_buffers */,
- const PP_GLESBuffer_Dev& /* buffers */) {
+void VideoDecoder::AssignGLESBuffers(
+ uint32_t /* no_of_buffers */,
+ const std::vector<PP_GLESBuffer_Dev>& /* buffers */) {
// TODO(vmr): Implement.
}
void VideoDecoder::AssignSysmemBuffers(
uint32_t /* no_of_buffers */,
- const PP_SysmemBuffer_Dev& /* buffers */) {
+ const std::vector<PP_SysmemBuffer_Dev>& /* buffers */) {
// TODO(vmr): Implement.
}

Powered by Google App Engine
This is Rietveld 408576698