Chromium Code Reviews| Index: chrome/browser/prefs/pref_hash_store.h |
| diff --git a/chrome/browser/prefs/pref_hash_store.h b/chrome/browser/prefs/pref_hash_store.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..afea68d77367c4096e1e95e1e968ffd4c48ba5c7 |
| --- /dev/null |
| +++ b/chrome/browser/prefs/pref_hash_store.h |
| @@ -0,0 +1,49 @@ |
| +// Copyright 2013 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROME_BROWSER_PREFS_PREF_HASH_STORE_H_ |
| +#define CHROME_BROWSER_PREFS_PREF_HASH_STORE_H_ |
| + |
| +#include <string> |
| + |
| +#include "base/memory/scoped_ptr.h" |
| + |
| +class PrefHashTracker; |
| + |
| +namespace base { |
| +class Value; |
| +} // namespace base |
| + |
| +// Stores hashes of and verifies preference values. To use, first call |
| +// |InitializeTrackedValue| with each preference that should be tracked. Then |
| +// call |OnPrefValueChanged| to update the hash store when preference values |
| +// change. |
| +class PrefHashStore { |
| + public: |
| + virtual ~PrefHashStore() {} |
| + |
| + enum ValueState { |
| + // The preference value corresponds to its stored hash. |
| + UNCHANGED, |
| + // The preference has been cleared since the last hash. |
| + CLEARED, |
| + // The preference value corresponds to its stored hash, which was calculated |
| + // using a legacy hash algorithm. |
| + MIGRATED, |
| + // The preference value has been changed since the last hash. |
| + CHANGED, |
| + // No stored hash exists for the preference value. |
| + UNKNOWN_VALUE, |
| + }; |
| + |
| + // Checks |initial_value| against the existing stored value hash. |
|
gab
2013/12/13 16:54:25
nit: Add mention of |path| in above comment.
|
| + virtual ValueState CheckValue( |
|
gab
2013/12/13 16:54:25
How about "CheckHash" here too:
1) To be consisten
|
| + const std::string& path, const base::Value* initial_value) const = 0; |
| + |
| + // Stores a hash of the current value of the preference at |path|. |
| + virtual void StoreHash(const std::string& path, |
| + const base::Value* value) = 0; |
| +}; |
| + |
| +#endif // CHROME_BROWSER_PREFS_PREF_HASH_STORE_H_ |