| Index: chrome/browser/chromeos/file_manager/external_filesystem_apitest.cc
|
| diff --git a/chrome/browser/chromeos/file_manager/external_filesystem_apitest.cc b/chrome/browser/chromeos/file_manager/external_filesystem_apitest.cc
|
| index 600cd583c8230abc5c2e24a358f2273152c5ac30..b76ac84083cc1804fc7053d5961f3c38bd647ac9 100644
|
| --- a/chrome/browser/chromeos/file_manager/external_filesystem_apitest.cc
|
| +++ b/chrome/browser/chromeos/file_manager/external_filesystem_apitest.cc
|
| @@ -529,6 +529,13 @@ class DriveFileSystemExtensionApiTest : public FileSystemExtensionApiTestBase {
|
| // DriveIntegrationService factory function for this test.
|
| drive::DriveIntegrationService* CreateDriveIntegrationService(
|
| Profile* profile) {
|
| + // Ignore signin profile.
|
| + if (profile->GetPath() == chromeos::ProfileHelper::GetSigninProfileDir())
|
| + return NULL;
|
| +
|
| + // DriveFileSystemExtensionApiTest doesn't expect that several user profiles
|
| + // could exist simultaneously.
|
| + CHECK(fake_drive_service_ == NULL);
|
| fake_drive_service_ = new drive::FakeDriveService;
|
| fake_drive_service_->LoadAppListForDriveApi("drive/applist.json");
|
|
|
|
|