| Index: chrome/browser/extensions/api/storage/storage_api.cc
|
| diff --git a/chrome/browser/extensions/api/storage/storage_api.cc b/chrome/browser/extensions/api/storage/storage_api.cc
|
| index d86b76321433b5ab8a709f18118c88ddca099be8..f9c683106fbd119022b4e2211b4222ef665a15e9 100644
|
| --- a/chrome/browser/extensions/api/storage/storage_api.cc
|
| +++ b/chrome/browser/extensions/api/storage/storage_api.cc
|
| @@ -235,7 +235,7 @@ bool StorageStorageAreaGetBytesInUseFunction::RunWithStorage(
|
| return false;
|
| }
|
|
|
| - SetResult(base::Value::CreateIntegerValue(bytes_in_use));
|
| + SetResult(new base::FundamentalValue(static_cast<int>(bytes_in_use)));
|
| return true;
|
| }
|
|
|
|
|