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

Unified Diff: content/browser/renderer_host/pepper/pepper_file_system_browser_host.h

Issue 93403002: Pepper: Add PepperFileSystemBrowserHost::GotFileSystemContext method. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | « no previous file | content/browser/renderer_host/pepper/pepper_file_system_browser_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 e872bc5b49aab1aba636866eae88a16ad64c7cdf..18768b827b2b6c052d816c877b3bb80a0436d306 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
@@ -64,27 +64,23 @@ class CONTENT_EXPORT PepperFileSystemBrowserHost
private:
friend class PepperFileSystemBrowserHostTest;
- void OpenExistingWithContext(
- const base::Closure& callback,
- scoped_refptr<fileapi::FileSystemContext> file_system_context);
- void GotFileSystemContext(
+ void OpenExistingFileSystem(
+ const base::Closure& callback);
+ void OpenFileSystem(
ppapi::host::ReplyMessageContext reply_context,
- fileapi::FileSystemType file_system_type,
- scoped_refptr<fileapi::FileSystemContext> file_system_context);
+ fileapi::FileSystemType file_system_type);
void OpenFileSystemComplete(
ppapi::host::ReplyMessageContext reply_context,
const GURL& root,
const std::string& name,
base::PlatformFileError error);
- void GotIsolatedFileSystemContext(
+ void OpenIsolatedFileSystem(
ppapi::host::ReplyMessageContext reply_context,
const std::string& fsid,
- PP_IsolatedFileSystemType_Private type,
- scoped_refptr<fileapi::FileSystemContext> file_system_context);
+ PP_IsolatedFileSystemType_Private type);
void OpenPluginPrivateFileSystem(
ppapi::host::ReplyMessageContext reply_context,
- const std::string& fsid,
- scoped_refptr<fileapi::FileSystemContext> file_system_context);
+ const std::string& fsid);
void OpenPluginPrivateFileSystemComplete(
ppapi::host::ReplyMessageContext reply_context,
const std::string& fsid,
@@ -102,7 +98,8 @@ class CONTENT_EXPORT PepperFileSystemBrowserHost
const std::string& fsid,
int32_t error);
- void SetFileSystemContext(
+ void GotFileSystemContext(
+ const base::Closure& closure,
scoped_refptr<fileapi::FileSystemContext> file_system_context);
std::string GetPluginMimeType() const;
« no previous file with comments | « no previous file | content/browser/renderer_host/pepper/pepper_file_system_browser_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698