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

Unified Diff: chrome/browser/chromeos/file_system_provider/fileapi/file_stream_reader_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/fileapi/file_stream_reader_unittest.cc
diff --git a/chrome/browser/chromeos/file_system_provider/fileapi/file_stream_reader_unittest.cc b/chrome/browser/chromeos/file_system_provider/fileapi/file_stream_reader_unittest.cc
index 6b2d60b2bc7bbf9b648efc858c49d5c5c081d28a..d0bfc6d41c295607642983f732ddc4d3c5be2122 100644
--- a/chrome/browser/chromeos/file_system_provider/fileapi/file_stream_reader_unittest.cc
+++ b/chrome/browser/chromeos/file_system_provider/fileapi/file_stream_reader_unittest.cc
@@ -96,12 +96,8 @@ class FileSystemProviderFileStreamReader : public testing::Test {
service->SetFileSystemFactoryForTesting(
base::Bind(&FakeProvidedFileSystem::Create));
- const bool result =
- service->MountFileSystem(kExtensionId,
- kFileSystemId,
- "Testing File System",
- false /* writable */,
- false /* supports_notify_tag */);
+ const bool result = service->MountFileSystem(
+ kExtensionId, MountOptions(kFileSystemId, "Testing File System"));
ASSERT_TRUE(result);
FakeProvidedFileSystem* provided_file_system =
static_cast<FakeProvidedFileSystem*>(

Powered by Google App Engine
This is Rietveld 408576698