diff options
author | mlamouri <mlamouri@chromium.org> | 2014-08-28 05:16:10 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-08-28 12:17:00 +0000 |
commit | 1bf7228404c300edb138cb6c36f88771603166b7 (patch) | |
tree | cc29f820b9ef2968827e0b34de90bd26826394f5 /webkit | |
parent | f996a06232f02b5e95a1230033268af232c5cfff (diff) | |
download | chromium_src-1bf7228404c300edb138cb6c36f88771603166b7.zip chromium_src-1bf7228404c300edb138cb6c36f88771603166b7.tar.gz chromium_src-1bf7228404c300edb138cb6c36f88771603166b7.tar.bz2 |
Revert of Modify test case to support streaming operation in sandbox file system. (patchset #6 of https://codereview.chromium.org/491813002/)
Reason for revert:
This is breaking fast/filesystem/op-copy.html in Blink:
http://test-results.appspot.com/dashboards/flakiness_dashboard.html#group=%40ToT%20Blink&tests=fast/filesystem/op-copy.html
Original issue's description:
> Modify test case to support streaming operation in sandbox file system.
>
> BUG=360088
> TEST=content_unittests passed
>
> Committed: https://chromium.googlesource.com/chromium/src/+/2332db94ec6c42aaa3d66f5226a4c17b85c1553e
TBR=tzik@chromium.org,iseki@chromium.org
NOTREECHECKS=true
NOTRY=true
BUG=360088
Review URL: https://codereview.chromium.org/510323003
Cr-Commit-Position: refs/heads/master@{#292367}
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 8ab5de1..4aa9595 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 false; + return true; } scoped_ptr<storage::FileStreamReader> |