| Index: extensions/browser/api/storage/storage_api.cc
|
| diff --git a/extensions/browser/api/storage/storage_api.cc b/extensions/browser/api/storage/storage_api.cc
|
| index a29bed886b0186b4c99f3572c480ebec3943df6d..5e984bc8f95362c6034de5f8bd265264cf2c79c1 100644
|
| --- a/extensions/browser/api/storage/storage_api.cc
|
| +++ b/extensions/browser/api/storage/storage_api.cc
|
| @@ -158,18 +158,6 @@ void GetModificationQuotaLimitHeuristics(QuotaLimitHeuristics* heuristics) {
|
| longLimitConfig,
|
| new QuotaLimitHeuristic::SingletonBucketMapper(),
|
| "MAX_WRITE_OPERATIONS_PER_HOUR"));
|
| -
|
| - // A max of 10 operations per minute, sustained over 10 minutes.
|
| - QuotaLimitHeuristic::Config shortLimitConfig = {
|
| - // See storage.json for current value.
|
| - core_api::storage::sync::MAX_SUSTAINED_WRITE_OPERATIONS_PER_MINUTE,
|
| - base::TimeDelta::FromMinutes(1)
|
| - };
|
| - heuristics->push_back(new QuotaService::SustainedLimit(
|
| - base::TimeDelta::FromMinutes(10),
|
| - shortLimitConfig,
|
| - new QuotaLimitHeuristic::SingletonBucketMapper(),
|
| - "MAX_SUSTAINED_WRITE_OPERATIONS_PER_MINUTE"));
|
| };
|
|
|
| } // namespace
|
|
|