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

Unified Diff: ppapi/cpp/dev/file_ref_dev.cc

Issue 4310002: Make PPAPI headers compile with C compilers (gcc on Linux & Mac and MSVS on W... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month 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/cpp/core.cc ('k') | ppapi/cpp/dev/find_dev.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/dev/file_ref_dev.cc
===================================================================
--- ppapi/cpp/dev/file_ref_dev.cc (revision 65116)
+++ ppapi/cpp/dev/file_ref_dev.cc (working copy)
@@ -73,7 +73,7 @@
if (!file_ref_f)
return PP_ERROR_NOINTERFACE;
return file_ref_f->MakeDirectory(pp_resource(),
- false, // make_ancestors
+ PP_FALSE, // make_ancestors
cc.pp_completion_callback());
}
@@ -82,7 +82,7 @@
if (!file_ref_f)
return PP_ERROR_NOINTERFACE;
return file_ref_f->MakeDirectory(pp_resource(),
- true, // make_ancestors
+ PP_TRUE, // make_ancestors
cc.pp_completion_callback());
}
« no previous file with comments | « ppapi/cpp/core.cc ('k') | ppapi/cpp/dev/find_dev.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698