| Index: chrome/browser/extensions/api/sync_file_system/sync_file_system_api.cc
|
| diff --git a/chrome/browser/extensions/api/sync_file_system/sync_file_system_api.cc b/chrome/browser/extensions/api/sync_file_system/sync_file_system_api.cc
|
| index 18d51986b424986d398a211bae2e9ab451270586..4f39d1977e1df71836dfff0749e58a8cd2134f12 100644
|
| --- a/chrome/browser/extensions/api/sync_file_system/sync_file_system_api.cc
|
| +++ b/chrome/browser/extensions/api/sync_file_system/sync_file_system_api.cc
|
| @@ -146,10 +146,8 @@ void SyncFileSystemGetUsageAndQuotaFunction::DidGetUsageAndQuota(
|
| }
|
|
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
| - // TODO(calvinlo): Convert QuotaStatusCode to error string
|
| - // (http://crbug.com/156791).
|
| if (status != quota::kQuotaStatusOk) {
|
| - error_ = base::StringPrintf(kQuotaError, static_cast<int>(status));
|
| + error_ = QuotaStatusCodeToString(status);
|
| SendResponse(false);
|
| return;
|
| }
|
|
|