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

Unified Diff: trunk/src/ppapi/proxy/file_ref_resource.cc

Issue 131473002: Revert 243802 "PPAPI: Add new PPB_FileRef.MakeDirectory to suppo..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 11 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 | « trunk/src/ppapi/proxy/file_ref_resource.h ('k') | trunk/src/ppapi/proxy/interface_list.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/ppapi/proxy/file_ref_resource.cc
===================================================================
--- trunk/src/ppapi/proxy/file_ref_resource.cc (revision 243841)
+++ trunk/src/ppapi/proxy/file_ref_resource.cc (working copy)
@@ -129,11 +129,11 @@
}
int32_t FileRefResource::MakeDirectory(
- int32_t make_directory_flags,
+ PP_Bool make_ancestors,
scoped_refptr<TrackedCallback> callback) {
Call<PpapiPluginMsg_FileRef_MakeDirectoryReply>(
BROWSER,
- PpapiHostMsg_FileRef_MakeDirectory(make_directory_flags),
+ PpapiHostMsg_FileRef_MakeDirectory(PP_TRUE == make_ancestors),
base::Bind(&FileRefResource::RunTrackedCallback, this, callback));
return PP_OK_COMPLETIONPENDING;
}
« no previous file with comments | « trunk/src/ppapi/proxy/file_ref_resource.h ('k') | trunk/src/ppapi/proxy/interface_list.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698