| Index: chrome/browser/chromeos/file_system_provider/provided_file_system_info.cc
|
| diff --git a/chrome/browser/chromeos/file_system_provider/provided_file_system.cc b/chrome/browser/chromeos/file_system_provider/provided_file_system_info.cc
|
| similarity index 58%
|
| copy from chrome/browser/chromeos/file_system_provider/provided_file_system.cc
|
| copy to chrome/browser/chromeos/file_system_provider/provided_file_system_info.cc
|
| index 8d669afd31a467a82409229054b62a7029c3d8c1..b552436c59a01450f2e2e0ef98fe478b9b2da6b4 100644
|
| --- a/chrome/browser/chromeos/file_system_provider/provided_file_system.cc
|
| +++ b/chrome/browser/chromeos/file_system_provider/provided_file_system_info.cc
|
| @@ -7,18 +7,19 @@
|
| namespace chromeos {
|
| namespace file_system_provider {
|
|
|
| -ProvidedFileSystem::ProvidedFileSystem() {}
|
| +ProvidedFileSystemInfo::ProvidedFileSystemInfo() {}
|
|
|
| -ProvidedFileSystem::ProvidedFileSystem(const std::string& extension_id,
|
| - int file_system_id,
|
| - const std::string& file_system_name,
|
| - const base::FilePath& mount_path)
|
| +ProvidedFileSystemInfo::ProvidedFileSystemInfo(
|
| + const std::string& extension_id,
|
| + int file_system_id,
|
| + const std::string& file_system_name,
|
| + const base::FilePath& mount_path)
|
| : extension_id_(extension_id),
|
| file_system_id_(file_system_id),
|
| file_system_name_(file_system_name),
|
| mount_path_(mount_path) {}
|
|
|
| -ProvidedFileSystem::~ProvidedFileSystem() {}
|
| +ProvidedFileSystemInfo::~ProvidedFileSystemInfo() {}
|
|
|
| } // namespace file_system_provider
|
| } // namespace chromeos
|
|
|