| Index: chrome/browser/chromeos/file_system_provider/provided_file_system_unittest.cc
|
| diff --git a/chrome/browser/chromeos/file_system_provider/provided_file_system_unittest.cc b/chrome/browser/chromeos/file_system_provider/provided_file_system_unittest.cc
|
| index e5a24d6853713e476c756c264a8f878e97a6573f..77ed95b51b41dd69f12aa378ea68b24b1c6b652d 100644
|
| --- a/chrome/browser/chromeos/file_system_provider/provided_file_system_unittest.cc
|
| +++ b/chrome/browser/chromeos/file_system_provider/provided_file_system_unittest.cc
|
| @@ -31,7 +31,7 @@ namespace {
|
| const char kExtensionId[] = "mbflcebpggnecokmikipoihdbecnjfoj";
|
| const int kExpectedRequestId = 1;
|
| const char kFileSystemId[] = "camera-pictures";
|
| -const char kFileSystemName[] = "Camera Pictures";
|
| +const char kDisplayName[] = "Camera Pictures";
|
|
|
| class FakeEventRouter : public extensions::EventRouter {
|
| public:
|
| @@ -90,7 +90,7 @@ class FileSystemProviderProvidedFileSystemTest : public testing::Test {
|
| const base::FilePath mount_path =
|
| util::GetMountPath(profile_.get(), kExtensionId, kFileSystemId);
|
| file_system_info_.reset(new ProvidedFileSystemInfo(
|
| - kExtensionId, kFileSystemId, kFileSystemName, mount_path));
|
| + kExtensionId, kFileSystemId, kDisplayName, mount_path));
|
| provided_file_system_.reset(
|
| new ProvidedFileSystem(event_router_.get(), *file_system_info_.get()));
|
| }
|
|
|