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

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..1fb7a4c2afc7a1fa473435633ede3f551c7d15cd 100644
--- a/content/renderer/pepper/pepper_file_system_host.h
+++ b/content/renderer/pepper/pepper_file_system_host.h
@@ -36,8 +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,
+ // Callback for OpenFileSystem.
+ void OpenFileSystemReply(base::PlatformFileError platform_error,
yzshen1 2013/05/14 16:50:09 nit: It could be moved to the private section.
kinuko 2013/05/15 13:58:03 Hmm, looks like this needs to be public as it's ca
yzshen1 2013/05/15 18:13:54 I think they could be private since they are base:
+ const std::string& name_unused,
const GURL& root);
private:

Powered by Google App Engine
This is Rietveld 408576698