| Index: chrome/browser/chromeos/drive/drive_system_service.cc
|
| diff --git a/chrome/browser/chromeos/drive/drive_system_service.cc b/chrome/browser/chromeos/drive/drive_system_service.cc
|
| index a5095ff3753c892cceeba7aa4e6b0a4b5d54ea7a..1ef760612540b24f2377ce57f78e0caf96ccca1d 100644
|
| --- a/chrome/browser/chromeos/drive/drive_system_service.cc
|
| +++ b/chrome/browser/chromeos/drive/drive_system_service.cc
|
| @@ -127,6 +127,7 @@ DriveSystemService::DriveSystemService(
|
| GURL(google_apis::GDataWapiUrlGenerator::kBaseUrlForProduction),
|
| GetDriveUserAgent()));
|
| }
|
| + scheduler_.reset(new DriveScheduler(profile_, drive_service_.get()));
|
| cache_.reset(new DriveCache(!test_cache_root.empty() ? test_cache_root :
|
| DriveCache::GetCacheRootPath(profile),
|
| blocking_task_runner_,
|
| @@ -143,6 +144,7 @@ DriveSystemService::DriveSystemService(
|
| new DriveFileSystem(profile_,
|
| cache(),
|
| drive_service_.get(),
|
| + scheduler_.get(),
|
| webapps_registry(),
|
| resource_metadata_.get(),
|
| blocking_task_runner_));
|
|
|