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

Unified Diff: ppapi/thunk/ppb_video_decoder_api.h

Issue 7361010: Enable fire-and-forget Destroy of HW video decoder, and misc other improvements. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: vrk CR responses. Created 9 years, 5 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/thunk/ppb_video_decoder_api.h
diff --git a/ppapi/thunk/ppb_video_decoder_api.h b/ppapi/thunk/ppb_video_decoder_api.h
index d019e8e119b2490da915e2680091130b57d6fec2..15c540a36ffe84a3fc6add5307ac12473aa8b95c 100644
--- a/ppapi/thunk/ppb_video_decoder_api.h
+++ b/ppapi/thunk/ppb_video_decoder_api.h
@@ -24,7 +24,7 @@ class PPB_VideoDecoder_API {
virtual void ReusePictureBuffer(int32_t picture_buffer_id) = 0;
virtual int32_t Flush(PP_CompletionCallback callback) = 0;
virtual int32_t Reset(PP_CompletionCallback callback) = 0;
- virtual int32_t Destroy(PP_CompletionCallback callback) = 0;
+ virtual void Destroy() = 0;
};
} // namespace thunk

Powered by Google App Engine
This is Rietveld 408576698