#ifndef EXTENSIONS_BROWSER_VALUE_STORE_TESTING_VALUE_STORE_H_
#define EXTENSIONS_BROWSER_VALUE_STORE_TESTING_VALUE_STORE_H_
#include "base/compiler_specific.h"
#include "extensions/browser/value_store/value_store.h"
class TestingValueStore : public ValueStore {
public:
TestingValueStore();
virtual ~TestingValueStore();
void set_error_code(ErrorCode error_code) { error_code_ = error_code; }
int read_count() { return read_count_; }
int write_count() { return write_count_; }
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:
scoped_ptr<ValueStore::Error> TestingError();
base::DictionaryValue storage_;
int read_count_;
int write_count_;
ErrorCode error_code_;
DISALLOW_COPY_AND_ASSIGN(TestingValueStore);
};
#endif