| Index: chrome/browser/browsing_data/browsing_data_file_system_helper.cc
|
| diff --git a/chrome/browser/browsing_data/browsing_data_file_system_helper.cc b/chrome/browser/browsing_data/browsing_data_file_system_helper.cc
|
| index 568af7710974a7a7b2fbf75363ee8b50f8598345..730f2e724b55a57334b92fa6e76fba191bf2caf4 100644
|
| --- a/chrome/browser/browsing_data/browsing_data_file_system_helper.cc
|
| +++ b/chrome/browser/browsing_data/browsing_data_file_system_helper.cc
|
| @@ -133,10 +133,10 @@ void BrowsingDataFileSystemHelperImpl::FetchFileSystemInfoInFileThread() {
|
| // We can call these synchronous methods as we've already verified that
|
| // we're running on the FILE thread.
|
| int64 persistent_usage = quota_util->GetOriginUsageOnFileThread(
|
| - filesystem_context_, current,
|
| + filesystem_context_.get(), current,
|
| fileapi::kFileSystemTypePersistent);
|
| int64 temporary_usage = quota_util->GetOriginUsageOnFileThread(
|
| - filesystem_context_, current,
|
| + filesystem_context_.get(), current,
|
| fileapi::kFileSystemTypeTemporary);
|
| file_system_info_.push_back(
|
| FileSystemInfo(
|
|
|