diff options
author | tommycli@chromium.org <tommycli@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-24 18:30:59 +0000 |
---|---|---|
committer | tommycli@chromium.org <tommycli@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-24 18:30:59 +0000 |
commit | 8ed6b69371c1dc70334794ee38ef9aa2ab76d013 (patch) | |
tree | 78e3a0669be73b167c721668666bc44c3154898f /webkit/browser/fileapi/isolated_file_system_backend.h | |
parent | 20e13275c24a0de17aea33714eb2fce17702cff1 (diff) | |
download | chromium_src-8ed6b69371c1dc70334794ee38ef9aa2ab76d013.zip chromium_src-8ed6b69371c1dc70334794ee38ef9aa2ab76d013.tar.gz chromium_src-8ed6b69371c1dc70334794ee38ef9aa2ab76d013.tar.bz2 |
Fileapi: Add alternate code path to cleanly support streaming backends.
This adds the fileapi infrastructure changes kinuko recommended in the comments to: https://codereview.chromium.org/107833003/
TBR=sky
BUG=110119
Review URL: https://codereview.chromium.org/165943010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@252946 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/browser/fileapi/isolated_file_system_backend.h')
-rw-r--r-- | webkit/browser/fileapi/isolated_file_system_backend.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/webkit/browser/fileapi/isolated_file_system_backend.h b/webkit/browser/fileapi/isolated_file_system_backend.h index a7284a3d..ca266e8 100644 --- a/webkit/browser/fileapi/isolated_file_system_backend.h +++ b/webkit/browser/fileapi/isolated_file_system_backend.h @@ -33,6 +33,7 @@ class IsolatedFileSystemBackend : public FileSystemBackend { const FileSystemURL& url, FileSystemContext* context, base::File::Error* error_code) const OVERRIDE; + virtual bool SupportsStreaming(const FileSystemURL& url) const OVERRIDE; virtual scoped_ptr<webkit_blob::FileStreamReader> CreateFileStreamReader( const FileSystemURL& url, int64 offset, |