This source file includes following definitions.
- mount_path_
#include "chrome/browser/chromeos/file_system_provider/provided_file_system.h"
namespace chromeos {
namespace file_system_provider {
ProvidedFileSystem::ProvidedFileSystem() {}
ProvidedFileSystem::ProvidedFileSystem(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() {}
}
}