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

Unified Diff: ppapi/proxy/ppb_flash_proxy.cc

Issue 10408054: ppapi: Fix typo when entering FileRef. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/ppb_flash_proxy.cc
===================================================================
--- ppapi/proxy/ppb_flash_proxy.cc (revision 137373)
+++ ppapi/proxy/ppb_flash_proxy.cc (working copy)
@@ -770,7 +770,7 @@
PP_Resource file_ref_id,
int32_t mode,
PP_FileHandle* file) {
- EnterResourceNoLock<PPB_FileRef> enter(file_ref_id, true);
+ EnterResourceNoLock<thunk::PPB_FileRef_API> enter(file_ref_id, true);
if (enter.failed())
return PP_ERROR_BADRESOURCE;
@@ -786,7 +786,7 @@
int32_t PPB_Flash_Proxy::QueryFileRef(PP_Instance instance,
PP_Resource file_ref_id,
PP_FileInfo* info) {
- EnterResourceNoLock<PPB_FileRef> enter(file_ref_id, true);
+ EnterResourceNoLock<thunk::PPB_FileRef_API> enter(file_ref_id, true);
if (enter.failed())
return PP_ERROR_BADRESOURCE;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698