| Index: extensions/browser/value_store/testing_value_store.h
|
| diff --git a/extensions/browser/value_store/testing_value_store.h b/extensions/browser/value_store/testing_value_store.h
|
| index dec5c2c2da97f1183d7038e0b39a2cef123c5a53..20faa7d6ec65e24a5c28b3488bd30bbcead77f66 100644
|
| --- a/extensions/browser/value_store/testing_value_store.h
|
| +++ b/extensions/browser/value_store/testing_value_store.h
|
| @@ -28,25 +28,25 @@ class TestingValueStore : public ValueStore {
|
| int write_count() { return write_count_; }
|
|
|
| // ValueStore implementation.
|
| - 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 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;
|
| + 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;
|
| + 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;
|
| // TestingValueStores can't get corrupted (they're all in-memory), so these
|
| // just return true.
|
| - virtual bool Restore() OVERRIDE;
|
| - virtual bool RestoreKey(const std::string& key) OVERRIDE;
|
| + virtual bool Restore() override;
|
| + virtual bool RestoreKey(const std::string& key) override;
|
|
|
| private:
|
| scoped_ptr<ValueStore::Error> TestingError();
|
|
|