#ifndef EXTENSIONS_BROWSER_API_STORAGE_WEAK_UNLIMITED_SETTINGS_STORAGE_H_
#define EXTENSIONS_BROWSER_API_STORAGE_WEAK_UNLIMITED_SETTINGS_STORAGE_H_
#include "base/compiler_specific.h"
#include "extensions/browser/value_store/value_store.h"
namespace extensions {
class WeakUnlimitedSettingsStorage : public ValueStore {
public:
explicit WeakUnlimitedSettingsStorage(ValueStore* delegate);
virtual ~WeakUnlimitedSettingsStorage();
virtual size_t GetBytesInUse(const std::string& key) OVERRIDE;
virtual size_t GetBytesInUse(const std::vector<std::string>& keys) OVERRIDE;
virtual size_t GetBytesInUse() OVERRIDE;
virtual ReadResult Get(const std::string& key) OVERRIDE;
virtual ReadResult Get(const std::vector<std::string>& keys) OVERRIDE;
virtual ReadResult Get() OVERRIDE;
virtual WriteResult Set(
WriteOptions options,
const std::string& key,
const base::Value& value) OVERRIDE;
virtual WriteResult Set(
WriteOptions options, const base::DictionaryValue& values) OVERRIDE;
virtual WriteResult Remove(const std::string& key) OVERRIDE;
virtual WriteResult Remove(const std::vector<std::string>& keys) OVERRIDE;
virtual WriteResult Clear() OVERRIDE;
virtual bool Restore() OVERRIDE;
virtual bool RestoreKey(const std::string& key) OVERRIDE;
private:
ValueStore* const delegate_;
DISALLOW_COPY_AND_ASSIGN(WeakUnlimitedSettingsStorage);
};
}
#endif