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

Unified Diff: ppapi/shared_impl/ppb_video_decoder_shared.cc

Issue 13123003: Flash: Don't lose a reference to the Graphics3D from the VideoDecoder. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
Index: ppapi/shared_impl/ppb_video_decoder_shared.cc
diff --git a/ppapi/shared_impl/ppb_video_decoder_shared.cc b/ppapi/shared_impl/ppb_video_decoder_shared.cc
index ffd422d09979758f42fc6db044c9b1c5540d69d3..c0d94e88e8558e1c57d08399aa6e09ce0e4ac9d6 100644
--- a/ppapi/shared_impl/ppb_video_decoder_shared.cc
+++ b/ppapi/shared_impl/ppb_video_decoder_shared.cc
@@ -44,9 +44,12 @@ void PPB_VideoDecoder_Shared::InitCommon(
}
void PPB_VideoDecoder_Shared::Destroy() {
+ if (graphics_context_) {
+ PpapiGlobals::Get()->GetResourceTracker()->ReleaseResource(
+ graphics_context_);
+ }
graphics_context_ = 0;
piman 2013/03/27 22:48:31 nit: you can move this inside the if.
danakj 2013/03/27 22:54:52 Done.
gles2_impl_ = NULL;
- PpapiGlobals::Get()->GetResourceTracker()->ReleaseResource(graphics_context_);
}
bool PPB_VideoDecoder_Shared::SetFlushCallback(
« no previous file with comments | « no previous file | webkit/plugins/ppapi/ppb_video_decoder_impl.cc » ('j') | webkit/plugins/ppapi/ppb_video_decoder_impl.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698