| Index: ppapi/thunk/resource_creation_api.h
|
| diff --git a/ppapi/thunk/resource_creation_api.h b/ppapi/thunk/resource_creation_api.h
|
| index cd9a8ffd31560cf895a9f56d1a92572cf7322a4a..1ee34ceb01aee9b63a1387d97d89167933323787 100644
|
| --- a/ppapi/thunk/resource_creation_api.h
|
| +++ b/ppapi/thunk/resource_creation_api.h
|
| @@ -45,12 +45,15 @@ class ResourceCreationAPI {
|
|
|
| virtual PP_Resource CreateDirectoryReader(PP_Instance instance,
|
| PP_Resource directory_ref) = 0;
|
| + virtual PP_Resource CreateExtCrxFileSystemPrivate(PP_Instance instance) = 0;
|
| virtual PP_Resource CreateFileIO(PP_Instance instance) = 0;
|
| virtual PP_Resource CreateFileRef(PP_Instance instance,
|
| PP_Resource file_system,
|
| const char* path) = 0;
|
| virtual PP_Resource CreateFileSystem(PP_Instance instance,
|
| PP_FileSystemType type) = 0;
|
| + virtual PP_Resource CreateIsolatedFileSystem(PP_Instance instance,
|
| + const char* fsid) = 0;
|
| virtual PP_Resource CreateIMEInputEvent(PP_Instance instance,
|
| PP_InputEvent_Type type,
|
| PP_TimeTicks time_stamp,
|
|
|