// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef EXTENSIONS_BROWSER_API_STORAGE_SETTINGS_STORAGE_QUOTA_ENFORCER_H_ #define EXTENSIONS_BROWSER_API_STORAGE_SETTINGS_STORAGE_QUOTA_ENFORCER_H_ #include <stddef.h> #include <map> #include <memory> #include <string> #include <vector> #include "base/compiler_specific.h" #include "base/memory/weak_ptr.h" #include "components/value_store/value_store.h" namespace extensions { // Enforces total quota and a per-setting quota in bytes, and a maximum number // of setting keys, for a delegate storage area. class SettingsStorageQuotaEnforcer : public value_store::ValueStore { … }; } // namespace extensions #endif // EXTENSIONS_BROWSER_API_STORAGE_SETTINGS_STORAGE_QUOTA_ENFORCER_H_