| Index: chrome/browser/chromeos/file_system_provider/provided_file_system_info.h
|
| diff --git a/chrome/browser/chromeos/file_system_provider/provided_file_system_info.h b/chrome/browser/chromeos/file_system_provider/provided_file_system_info.h
|
| index 5a3682dcfe0fdf9450d56bf05347b2118defa56a..1ccd9e0c75f21b8639f4c11c48359f0e8844b7ba 100644
|
| --- a/chrome/browser/chromeos/file_system_provider/provided_file_system_info.h
|
| +++ b/chrome/browser/chromeos/file_system_provider/provided_file_system_info.h
|
| @@ -18,14 +18,14 @@ class 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,
|
| const base::FilePath& mount_path);
|
|
|
| ~ProvidedFileSystemInfo();
|
|
|
| const std::string& extension_id() const { return extension_id_; }
|
| const std::string& file_system_id() const { return file_system_id_; }
|
| - const std::string& file_system_name() const { return file_system_name_; }
|
| + const std::string& display_name() const { return display_name_; }
|
| const base::FilePath& mount_path() const { return mount_path_; }
|
|
|
| private:
|
| @@ -36,7 +36,7 @@ class ProvidedFileSystemInfo {
|
| std::string file_system_id_;
|
|
|
| // Name of the file system, can be rendered in the UI.
|
| - std::string file_system_name_;
|
| + std::string display_name_;
|
|
|
| // Mount path of the underlying file system.
|
| base::FilePath mount_path_;
|
|
|