diff options
author | iseki <iseki@chromium.org> | 2014-08-28 03:38:47 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-08-28 10:41:48 +0000 |
commit | b146506ba947346179a58439459848bb5ef2e048 (patch) | |
tree | aae1bc85fac69cf90911c230a0e7f9b3abbf98b8 /webkit | |
parent | 24dcd28998eee1d37c67ccb680a654a9dc8e341d (diff) | |
download | chromium_src-b146506ba947346179a58439459848bb5ef2e048.zip chromium_src-b146506ba947346179a58439459848bb5ef2e048.tar.gz chromium_src-b146506ba947346179a58439459848bb5ef2e048.tar.bz2 |
Modify test case to support streaming operation in sandbox file system.
BUG=360088
TEST=content_unittests passed
Review URL: https://codereview.chromium.org/491813002
Cr-Commit-Position: refs/heads/master@{#292358}
Diffstat (limited to 'webkit')
-rw-r--r-- | webkit/browser/fileapi/sandbox_file_system_backend.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/browser/fileapi/sandbox_file_system_backend.cc b/webkit/browser/fileapi/sandbox_file_system_backend.cc index 4aa9595..8ab5de1 100644 --- a/webkit/browser/fileapi/sandbox_file_system_backend.cc +++ b/webkit/browser/fileapi/sandbox_file_system_backend.cc @@ -128,7 +128,7 @@ bool SandboxFileSystemBackend::SupportsStreaming( bool SandboxFileSystemBackend::HasInplaceCopyImplementation( storage::FileSystemType type) const { - return true; + return false; } scoped_ptr<storage::FileStreamReader> |