Index: chrome/common/persistent_pref_store.h |
diff --git a/chrome/common/persistent_pref_store.h b/chrome/common/persistent_pref_store.h |
index df5a49a7a59457fa2a8378fb3ab1bd075fb66108..69c440b8fbff3db029a9392624c321e078c946e9 100644 |
--- a/chrome/common/persistent_pref_store.h |
+++ b/chrome/common/persistent_pref_store.h |
@@ -15,8 +15,6 @@ |
// the data to some backing store. |
class PersistentPrefStore : public PrefStore { |
public: |
- virtual ~PersistentPrefStore() {} |
- |
// Unique integer code for each type of error so we can report them |
// distinctly in a histogram. |
// NOTE: Don't change the order here as it will change the server's meaning |
@@ -85,6 +83,9 @@ class PersistentPrefStore : public PrefStore { |
// Lands any pending writes to disk. |
virtual void CommitPendingWrite() = 0; |
+ |
+ protected: |
+ virtual ~PersistentPrefStore() {} |
}; |
#endif // CHROME_COMMON_PERSISTENT_PREF_STORE_H_ |