Index: chrome/browser/prefs/testing_pref_store.cc |
diff --git a/chrome/browser/prefs/testing_pref_store.cc b/chrome/browser/prefs/testing_pref_store.cc |
index f7ce0f4313a86d4ce7eaa6277050088331a5cb53..4fe53f8562e1953bc9fc4035f3d1d6eb341cee7e 100644 |
--- a/chrome/browser/prefs/testing_pref_store.cc |
+++ b/chrome/browser/prefs/testing_pref_store.cc |
@@ -9,9 +9,8 @@ |
TestingPrefStore::TestingPrefStore() |
: read_only_(true), |
prefs_written_(false), |
- init_complete_(false) {} |
- |
-TestingPrefStore::~TestingPrefStore() {} |
+ init_complete_(false) { |
+} |
PrefStore::ReadResult TestingPrefStore::GetValue(const std::string& key, |
const Value** value) const { |
@@ -134,3 +133,5 @@ bool TestingPrefStore::GetBoolean(const std::string& key, bool* value) const { |
void TestingPrefStore::set_read_only(bool read_only) { |
read_only_ = read_only; |
} |
+ |
+TestingPrefStore::~TestingPrefStore() {} |