diff options
author | kkanetkar@chromium.org <kkanetkar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-02 20:36:52 +0000 |
---|---|---|
committer | kkanetkar@chromium.org <kkanetkar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-02 20:36:52 +0000 |
commit | 841daf1da7feb933fb5ae82d86f82f1d218ad912 (patch) | |
tree | 1cf23b1c6648d7d61129b74ab61c98f87b37db87 /webkit/fileapi/file_system_callback_dispatcher.h | |
parent | 2ba5f33bc46a606baaac64a23c78e8726a2c8edd (diff) | |
download | chromium_src-841daf1da7feb933fb5ae82d86f82f1d218ad912.zip chromium_src-841daf1da7feb933fb5ae82d86f82f1d218ad912.tar.gz chromium_src-841daf1da7feb933fb5ae82d86f82f1d218ad912.tar.bz2 |
Moving Entry from base::file_util_proxy namespace to within class base::FileUtilProxy
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/4261001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64806 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/fileapi/file_system_callback_dispatcher.h')
-rw-r--r-- | webkit/fileapi/file_system_callback_dispatcher.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/webkit/fileapi/file_system_callback_dispatcher.h b/webkit/fileapi/file_system_callback_dispatcher.h index ea7c442..0b4c25b 100644 --- a/webkit/fileapi/file_system_callback_dispatcher.h +++ b/webkit/fileapi/file_system_callback_dispatcher.h @@ -33,7 +33,7 @@ class FileSystemCallbackDispatcher { // all contents (the subsets reported in any two calls are disjoint), and // |has_more| will be true, except for the last chunk. virtual void DidReadDirectory( - const std::vector<base::file_util_proxy::Entry>& entries, + const std::vector<base::FileUtilProxy::Entry>& entries, bool has_more) = 0; // Callback for opening a file system. Called with a name and root path for @@ -48,6 +48,6 @@ class FileSystemCallbackDispatcher { virtual void DidWrite(int64 bytes, bool complete) = 0; }; -} // namespace fileapi +} // namespace fileapi -#endif // WEBKIT_FILEAPI_FILE_SYSTEM_CALLBACK_DISPATCHER_H_ +#endif // WEBKIT_FILEAPI_FILE_SYSTEM_CALLBACK_DISPATCHER_H_ |