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

Unified Diff: ppapi/thunk/ppb_video_destination_private_thunk.cc

Issue 15039009: Add PPAPI tests for VideoSource and VideoDestination resources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 7 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
« no previous file with comments | « ppapi/tests/test_video_source.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/thunk/ppb_video_destination_private_thunk.cc
diff --git a/ppapi/thunk/ppb_video_destination_private_thunk.cc b/ppapi/thunk/ppb_video_destination_private_thunk.cc
index 072b1358566ea9b69ba6c45a85967be1afa5efa3..325f0bcae23adbfbba8abc31e8737413426603de 100644
--- a/ppapi/thunk/ppb_video_destination_private_thunk.cc
+++ b/ppapi/thunk/ppb_video_destination_private_thunk.cc
@@ -45,7 +45,7 @@ int32_t PutFrame(PP_Resource destination,
EnterResource<PPB_VideoDestination_Private_API> enter(destination, true);
if (enter.failed())
return enter.retval();
- return enter.SetResult(enter.object()->PutFrame(*frame));
+ return enter.object()->PutFrame(*frame);
}
void Close(PP_Resource destination) {
« no previous file with comments | « ppapi/tests/test_video_source.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698