// 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_WEAK_UNLIMITED_SETTINGS_STORAGE_H_ #define EXTENSIONS_BROWSER_API_STORAGE_WEAK_UNLIMITED_SETTINGS_STORAGE_H_ #include <stddef.h> #include <string> #include <vector> #include "base/compiler_specific.h" #include "base/memory/raw_ptr.h" #include "components/value_store/value_store.h" namespace extensions { // A ValueStore decorator which makes calls through |Set| ignore quota. // "Weak" because ownership of the delegate isn't taken; this is designed to be // temporarily attached to storage areas. class WeakUnlimitedSettingsStorage : public value_store::ValueStore { … }; } // namespace extensions #endif // EXTENSIONS_BROWSER_API_STORAGE_WEAK_UNLIMITED_SETTINGS_STORAGE_H_