| Index: chrome/browser/extensions/settings/settings_storage_quota_enforcer.cc
|
| diff --git a/chrome/browser/extensions/settings/settings_storage_quota_enforcer.cc b/chrome/browser/extensions/settings/settings_storage_quota_enforcer.cc
|
| index d0f5ace8baf2897b9a1a0e7fb652325c93334ef1..f5eb742a5bb68688aed9e69518a583eed61ef042 100644
|
| --- a/chrome/browser/extensions/settings/settings_storage_quota_enforcer.cc
|
| +++ b/chrome/browser/extensions/settings/settings_storage_quota_enforcer.cc
|
| @@ -35,7 +35,7 @@ void Allocate(
|
| // TODO(kalman): This is duplicating work that the leveldb delegate
|
| // implementation is about to do, and it would be nice to avoid this.
|
| std::string value_as_json;
|
| - base::JSONWriter::Write(&value, false, &value_as_json);
|
| + base::JSONWriter::Write(&value, &value_as_json);
|
| size_t new_size = key.size() + value_as_json.size();
|
| size_t existing_size = (*used_per_setting)[key];
|
|
|
|
|