Index: chrome/browser/chromeos/file_system_provider/operations/move_entry_unittest.cc |
diff --git a/chrome/browser/chromeos/file_system_provider/operations/move_entry_unittest.cc b/chrome/browser/chromeos/file_system_provider/operations/move_entry_unittest.cc |
index 9ebce8dfffe998968d56d64221654e21707cec32..6351820572ae7ef89708062468fd4a25a81dbc50 100644 |
--- a/chrome/browser/chromeos/file_system_provider/operations/move_entry_unittest.cc |
+++ b/chrome/browser/chromeos/file_system_provider/operations/move_entry_unittest.cc |
@@ -14,6 +14,8 @@ |
#include "chrome/browser/chromeos/file_system_provider/operations/test_util.h" |
#include "chrome/browser/chromeos/file_system_provider/provided_file_system_interface.h" |
#include "chrome/common/extensions/api/file_system_provider.h" |
+#include "chrome/common/extensions/api/file_system_provider_capabilities/file_system_provider_capabilities_handler.h" |
+#include "chrome/common/extensions/api/file_system_provider_capabilities/file_system_provider_capabilities_handler.h" |
#include "chrome/common/extensions/api/file_system_provider_internal.h" |
#include "extensions/browser/event_router.h" |
#include "storage/browser/fileapi/async_file_util.h" |
@@ -42,8 +44,9 @@ class FileSystemProviderOperationsMoveEntryTest : public testing::Test { |
void SetUp() override { |
MountOptions mount_options(kFileSystemId, "" /* display_name */); |
mount_options.writable = true; |
- file_system_info_ = |
- ProvidedFileSystemInfo(kExtensionId, mount_options, base::FilePath()); |
+ file_system_info_ = ProvidedFileSystemInfo( |
+ kExtensionId, mount_options, base::FilePath(), false /* configurable */, |
+ extensions::SOURCE_FILE); |
} |
ProvidedFileSystemInfo file_system_info_; |
@@ -102,9 +105,9 @@ TEST_F(FileSystemProviderOperationsMoveEntryTest, Execute_ReadOnly) { |
util::StatusCallbackLog callback_log; |
const ProvidedFileSystemInfo read_only_file_system_info( |
- kExtensionId, |
- MountOptions(kFileSystemId, "" /* display_name */), |
- base::FilePath() /* mount_path */); |
+ kExtensionId, MountOptions(kFileSystemId, "" /* display_name */), |
+ base::FilePath() /* mount_path */, false /* configurable */, |
+ extensions::SOURCE_FILE); |
MoveEntry move_entry(NULL, read_only_file_system_info, |
base::FilePath(kSourcePath), base::FilePath(kTargetPath), |