summaryrefslogtreecommitdiffstats
path: root/chrome/common/pref_store.h
diff options
context:
space:
mode:
authoraltimofeev@chromium.org <altimofeev@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-05-11 10:14:43 +0000
committeraltimofeev@chromium.org <altimofeev@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-05-11 10:14:43 +0000
commit845b43a8e2652e74447fedd648216769e3d1e566 (patch)
tree8a4743d8b59866de832b3719d44b9113a8c5a67a /chrome/common/pref_store.h
parent837c88b9a8072ca14f9a32b4ed369e499d64eac4 (diff)
downloadchromium_src-845b43a8e2652e74447fedd648216769e3d1e566.zip
chromium_src-845b43a8e2652e74447fedd648216769e3d1e566.tar.gz
chromium_src-845b43a8e2652e74447fedd648216769e3d1e566.tar.bz2
Adds async interface method, which is used by JsonPrefStore. Also see the bug description for more info.
BUG=chromium-os:14289 TEST=JsonPrefStoreTest.* Review URL: http://codereview.chromium.org/6894020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@84962 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/pref_store.h')
-rw-r--r--chrome/common/pref_store.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/common/pref_store.h b/chrome/common/pref_store.h
index 48b51a3..eec74e9 100644
--- a/chrome/common/pref_store.h
+++ b/chrome/common/pref_store.h
@@ -30,7 +30,7 @@ class PrefStore : public base::RefCounted<PrefStore> {
// Called when the value for the given |key| in the store changes.
virtual void OnPrefValueChanged(const std::string& key) = 0;
// Notification about the PrefStore being fully initialized.
- virtual void OnInitializationCompleted() = 0;
+ virtual void OnInitializationCompleted(bool succeeded) = 0;
};
// Return values for GetValue().