Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(291)

Unified Diff: content/browser/fileapi/local_file_stream_writer_unittest.cc

Issue 942633004: IndexedDB: Fixed support for empty blobs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Deleted CREATE_NEW_FILE. Creating file before using FileStreamWriter. Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/fileapi/local_file_stream_writer_unittest.cc
diff --git a/content/browser/fileapi/local_file_stream_writer_unittest.cc b/content/browser/fileapi/local_file_stream_writer_unittest.cc
index 48f5560ff8b909f6a851b37aa418263ba46c24cb..00f7df8f6aee2605ac73d4d12217b8adb725c9a2 100644
--- a/content/browser/fileapi/local_file_stream_writer_unittest.cc
+++ b/content/browser/fileapi/local_file_stream_writer_unittest.cc
@@ -83,8 +83,7 @@ class LocalFileStreamWriterTest : public testing::Test {
LocalFileStreamWriter* CreateWriter(const base::FilePath& path,
int64 offset) {
- return new LocalFileStreamWriter(file_task_runner(), path, offset,
- FileStreamWriter::OPEN_EXISTING_FILE);
+ return new LocalFileStreamWriter(file_task_runner(), path, offset);
}
private:

Powered by Google App Engine
This is Rietveld 408576698