| Index: webkit/browser/fileapi/file_system_backend.h
|
| diff --git a/webkit/browser/fileapi/file_system_backend.h b/webkit/browser/fileapi/file_system_backend.h
|
| index a8cf975c6afb827741799182809cd0ffeca437a7..34960caff4cf0121c2e3feaad67bf191b7bdfa8a 100644
|
| --- a/webkit/browser/fileapi/file_system_backend.h
|
| +++ b/webkit/browser/fileapi/file_system_backend.h
|
| @@ -19,11 +19,11 @@
|
|
|
| class GURL;
|
|
|
| -namespace webkit_blob {
|
| +namespace storage {
|
| class FileStreamReader;
|
| }
|
|
|
| -namespace fileapi {
|
| +namespace storage {
|
|
|
| class AsyncFileUtil;
|
| class CopyOrMoveFileValidatorFactory;
|
| @@ -105,7 +105,7 @@ class WEBKIT_STORAGE_BROWSER_EXPORT FileSystemBackend {
|
| // ERR_UPLOAD_FILE_CHANGED error.
|
| // This method itself does *not* check if the given path exists and is a
|
| // regular file.
|
| - virtual scoped_ptr<webkit_blob::FileStreamReader> CreateFileStreamReader(
|
| + virtual scoped_ptr<storage::FileStreamReader> CreateFileStreamReader(
|
| const FileSystemURL& url,
|
| int64 offset,
|
| const base::Time& expected_modification_time,
|
| @@ -132,7 +132,7 @@ class ExternalFileSystemBackend : public FileSystemBackend {
|
| // Returns true if |url| is allowed to be accessed.
|
| // This is supposed to perform ExternalFileSystem-specific security
|
| // checks.
|
| - virtual bool IsAccessAllowed(const fileapi::FileSystemURL& url) const = 0;
|
| + virtual bool IsAccessAllowed(const storage::FileSystemURL& url) const = 0;
|
| // Returns the list of top level directories that are exposed by this
|
| // provider. This list is used to set appropriate child process file access
|
| // permissions.
|
| @@ -153,6 +153,6 @@ class ExternalFileSystemBackend : public FileSystemBackend {
|
| base::FilePath* virtual_path) = 0;
|
| };
|
|
|
| -} // namespace fileapi
|
| +} // namespace storage
|
|
|
| #endif // WEBKIT_BROWSER_FILEAPI_FILE_SYSTEM_BACKEND_H_
|
|
|