| Index: content/browser/renderer_host/pepper/pepper_file_system_browser_host.h
|
| diff --git a/content/browser/renderer_host/pepper/pepper_file_system_browser_host.h b/content/browser/renderer_host/pepper/pepper_file_system_browser_host.h
|
| index ebf55f48546d2fab78ecb29a1214112ebf40c519..2c67382909afae212e2e0819b66aa12adab3f877 100644
|
| --- a/content/browser/renderer_host/pepper/pepper_file_system_browser_host.h
|
| +++ b/content/browser/renderer_host/pepper/pepper_file_system_browser_host.h
|
| @@ -61,17 +61,27 @@ class PepperFileSystemBrowserHost :
|
| void GotIsolatedFileSystemContext(
|
| ppapi::host::ReplyMessageContext reply_context,
|
| scoped_refptr<fileapi::FileSystemContext> fs_context);
|
| + void GotFileSystemContextForPluginPrivate(
|
| + ppapi::host::ReplyMessageContext reply_context,
|
| + scoped_refptr<fileapi::FileSystemContext> fs_context);
|
| void OpenFileSystemComplete(
|
| ppapi::host::ReplyMessageContext reply_context,
|
| const GURL& root,
|
| const std::string& name,
|
| base::PlatformFileError error);
|
| + void OpenPluginPrivateFileSystemComplete(
|
| + ppapi::host::ReplyMessageContext reply_context,
|
| + const GURL& root,
|
| + const std::string& fsid,
|
| + base::PlatformFileError error);
|
|
|
| int32_t OnHostMsgOpen(ppapi::host::HostMessageContext* context,
|
| int64_t expected_size);
|
| int32_t OnHostMsgInitIsolatedFileSystem(
|
| ppapi::host::HostMessageContext* context,
|
| const std::string& fsid);
|
| + int32_t OnHostMsgOpenPluginPrivateFileSystem(
|
| + ppapi::host::HostMessageContext* context);
|
|
|
| BrowserPpapiHost* browser_ppapi_host_;
|
|
|
|
|