Chromium Code Reviews| 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: |