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

Unified Diff: chrome/browser/chromeos/file_system_provider/operations/read_file_unittest.cc

Issue 624903002: [fsp] Group arguments for mounting into a struct. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed a bug. Created 6 years, 2 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: chrome/browser/chromeos/file_system_provider/operations/read_file_unittest.cc
diff --git a/chrome/browser/chromeos/file_system_provider/operations/read_file_unittest.cc b/chrome/browser/chromeos/file_system_provider/operations/read_file_unittest.cc
index 8a2a0c714dccd727c0ff2cd0f86d3d7e544b340c..5805cc0035c0cd5cc414fcb77e0631c6fedf2bd5 100644
--- a/chrome/browser/chromeos/file_system_provider/operations/read_file_unittest.cc
+++ b/chrome/browser/chromeos/file_system_provider/operations/read_file_unittest.cc
@@ -77,13 +77,10 @@ class FileSystemProviderOperationsReadFileTest : public testing::Test {
virtual ~FileSystemProviderOperationsReadFileTest() {}
virtual void SetUp() override {
- file_system_info_ =
- ProvidedFileSystemInfo(kExtensionId,
- kFileSystemId,
- "" /* display_name */,
- false /* writable */,
- false /* supports_notify_tag */,
- base::FilePath() /* mount_path */);
+ file_system_info_ = ProvidedFileSystemInfo(
+ kExtensionId,
+ MountOptions(kFileSystemId, "" /* display_name */),
+ base::FilePath());
io_buffer_ = make_scoped_refptr(new net::IOBuffer(kOffset + kLength));
}

Powered by Google App Engine
This is Rietveld 408576698