Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / chromeos / file_system_provider / provided_file_system_info.cc
index bd41084..9335c62 100644 (file)
@@ -12,11 +12,13 @@ ProvidedFileSystemInfo::ProvidedFileSystemInfo() {}
 ProvidedFileSystemInfo::ProvidedFileSystemInfo(
     const std::string& extension_id,
     const std::string& file_system_id,
-    const std::string& file_system_name,
+    const std::string& display_name,
+    bool writable,
     const base::FilePath& mount_path)
     : extension_id_(extension_id),
       file_system_id_(file_system_id),
-      file_system_name_(file_system_name),
+      display_name_(display_name),
+      writable_(writable),
       mount_path_(mount_path) {
 }