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

Unified Diff: chrome/browser/profiles/profile_impl.h

Issue 6894020: Adds async interface method to PersistentPrefStore. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: unittest for asyn reading Created 9 years, 8 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: chrome/browser/profiles/profile_impl.h
diff --git a/chrome/browser/profiles/profile_impl.h b/chrome/browser/profiles/profile_impl.h
index 5450bb6c9ba9942cb2eb11df6973bfda9093994f..2bca824105b44ab337326083467754577ec53ac3 100644
--- a/chrome/browser/profiles/profile_impl.h
+++ b/chrome/browser/profiles/profile_impl.h
@@ -36,8 +36,7 @@ class NetPrefObserver;
// The default profile implementation.
class ProfileImpl : public Profile,
public SpellCheckHostObserver,
- public NotificationObserver,
- public PrefServiceDelegate {
+ public NotificationObserver {
public:
virtual ~ProfileImpl();
@@ -158,9 +157,8 @@ class ProfileImpl : public Profile,
// Does final initialization. Should be called after prefs were loaded.
void DoFinalInit();
- // PrefServiceDelegate implementation. Does final prefs initialization and
- // calls Init().
- virtual void OnPrefsLoaded(PrefService* prefs, bool success);
+ // Does final prefs initialization and calls Init().
+ void OnPrefsLoaded(bool success);
void CreateWebDataService();
FilePath GetPrefFilePath();

Powered by Google App Engine
This is Rietveld 408576698