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

Unified Diff: ppapi/proxy/ppapi_param_traits.cc

Issue 14188019: CRX FileSystem Pepper private API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/proxy/ppapi_messages.h ('k') | ppapi/proxy/ppb_instance_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/ppapi_param_traits.cc
diff --git a/ppapi/proxy/ppapi_param_traits.cc b/ppapi/proxy/ppapi_param_traits.cc
index 40a421d779cd754a717683f5509833c2a2ad1e76..6cbf8a4af467c9b2a60795e0069edd4ff3341dfe 100644
--- a/ppapi/proxy/ppapi_param_traits.cc
+++ b/ppapi/proxy/ppapi_param_traits.cc
@@ -129,7 +129,8 @@ bool ParamTraits<PP_FileInfo>::Read(const Message* m, PickleIterator* iter,
if (system_type != PP_FILESYSTEMTYPE_INVALID &&
system_type != PP_FILESYSTEMTYPE_EXTERNAL &&
system_type != PP_FILESYSTEMTYPE_LOCALPERSISTENT &&
- system_type != PP_FILESYSTEMTYPE_LOCALTEMPORARY)
+ system_type != PP_FILESYSTEMTYPE_LOCALTEMPORARY &&
+ system_type != PP_FILESYSTEMTYPE_ISOLATED)
return false;
r->system_type = static_cast<PP_FileSystemType>(system_type);
return true;
« no previous file with comments | « ppapi/proxy/ppapi_messages.h ('k') | ppapi/proxy/ppb_instance_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698