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

Unified Diff: content/renderer/pepper/pepper_file_system_host.h

Issue 14796018: Cleanup: Deprecate FileSystemCallbackDispatcher (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
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
Index: content/renderer/pepper/pepper_file_system_host.h
diff --git a/content/renderer/pepper/pepper_file_system_host.h b/content/renderer/pepper/pepper_file_system_host.h
index 90ba4e054b6226b1863425e7be73057390f1b88b..b196d83765eec7d47635e8d04361149e37a32205 100644
--- a/content/renderer/pepper/pepper_file_system_host.h
+++ b/content/renderer/pepper/pepper_file_system_host.h
@@ -36,9 +36,9 @@ class PepperFileSystemHost :
bool IsOpened() const { return opened_; }
GURL GetRootUrl() const { return root_url_; }
- // It's public only to allow PlatformCallbackAdaptor to access.
- void OpenFileSystemReply(int32_t pp_error,
- const GURL& root);
+ // Callback for OpenFileSystem.
+ void DidOpenFileSystem(const std::string& name_unused, const GURL& root);
+ void DidFailOpenFileSystem(base::PlatformFileError error);
private:
int32_t OnHostMsgOpen(ppapi::host::HostMessageContext* context,

Powered by Google App Engine
This is Rietveld 408576698