| Index: chrome/browser/chromeos/gdata/gdata_system_service.cc
|
| diff --git a/chrome/browser/chromeos/gdata/gdata_system_service.cc b/chrome/browser/chromeos/gdata/gdata_system_service.cc
|
| index cdf10bf572e98391cd9ebc0e212f36965206f5d5..197632cf012d9716e9ef15bc0615b66206bd7283 100644
|
| --- a/chrome/browser/chromeos/gdata/gdata_system_service.cc
|
| +++ b/chrome/browser/chromeos/gdata/gdata_system_service.cc
|
| @@ -13,6 +13,7 @@
|
| #include "chrome/browser/chromeos/gdata/gdata_download_observer.h"
|
| #include "chrome/browser/chromeos/gdata/gdata_file_system.h"
|
| #include "chrome/browser/chromeos/gdata/gdata_file_system_proxy.h"
|
| +#include "chrome/browser/chromeos/gdata/gdata_file_write_helper.h"
|
| #include "chrome/browser/chromeos/gdata/gdata_sync_client.h"
|
| #include "chrome/browser/chromeos/gdata/gdata_uploader.h"
|
| #include "chrome/browser/chromeos/gdata/gdata_util.h"
|
| @@ -68,6 +69,7 @@ void GDataSystemService::Initialize(
|
| uploader(),
|
| webapps_registry(),
|
| blocking_task_runner_));
|
| + file_write_helper_.reset(new GDataFileWriteHelper(file_system()));
|
| download_observer_.reset(new GDataDownloadObserver(uploader(),
|
| file_system()));
|
| sync_client_.reset(new GDataSyncClient(profile_, file_system(), cache()));
|
| @@ -97,6 +99,7 @@ void GDataSystemService::Shutdown() {
|
| contacts_service_.reset();
|
| sync_client_.reset();
|
| download_observer_.reset();
|
| + file_write_helper_.reset();
|
| file_system_.reset();
|
| webapps_registry_.reset();
|
| uploader_.reset();
|
|
|