Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(222)

Unified Diff: base/prefs/persistent_pref_store.h

Issue 169323003: Implementation of leveldb-backed PrefStore (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: write every 10s Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: base/prefs/persistent_pref_store.h
diff --git a/base/prefs/persistent_pref_store.h b/base/prefs/persistent_pref_store.h
index 44f344289a9d60723954a59968e35dca6a1e6473..b37c45d2a20ef2efa6d8c0bae7e40e335ce263ef 100644
--- a/base/prefs/persistent_pref_store.h
+++ b/base/prefs/persistent_pref_store.h
@@ -30,6 +30,12 @@ class BASE_PREFS_EXPORT PersistentPrefStore : public WriteablePrefStore {
PREF_READ_ERROR_JSON_REPEAT,
PREF_READ_ERROR_OTHER,
PREF_READ_ERROR_FILE_NOT_SPECIFIED,
+ PREF_READ_ERROR_LEVELDB_IO_ERROR,
+ PREF_READ_ERROR_LEVELDB_DESTROYED_REOPEN_SUCCESS,
+ PREF_READ_ERROR_LEVELDB_REPAIRED_REOPEN_SUCCESS,
+ PREF_READ_ERROR_LEVELDB_DESTROY_FAILED,
+ PREF_READ_ERROR_LEVELDB_DESTROYED_REOPEN_FAILED,
+ PREF_READ_ERROR_LEVELDB_REPAIRED_REOPEN_FAILED,
PREF_READ_ERROR_MAX_ENUM
};

Powered by Google App Engine
This is Rietveld 408576698