Chromium Code Reviews| Index: chrome/browser/profile_impl.h |
| diff --git a/chrome/browser/profile_impl.h b/chrome/browser/profile_impl.h |
| index fdae9e2910b69cfd52cfdfb7638776c5c4a012d9..c26a87999c31092147cd07fa4d9475b3704faf82 100644 |
| --- a/chrome/browser/profile_impl.h |
| +++ b/chrome/browser/profile_impl.h |
| @@ -19,6 +19,7 @@ |
| #include "chrome/common/notification_registrar.h" |
| class PrefService; |
| +class ExtensionPrefs; |
| #if defined(OS_CHROMEOS) |
| namespace chromeos { |
| @@ -271,6 +272,10 @@ class ProfileImpl : public Profile, |
| scoped_refptr<ExtensionInfoMap> extension_info_map_; |
| + // This is a temporary pointer that contains the ExtensionPrefs until their |
| + // owner ship can be passed off to the ExtensionService |
| + scoped_ptr<ExtensionPrefs> tmp_extension_prefs_; |
|
Mattias Nissler (ping if slow)
2010/11/19 10:47:40
s/owner ship/ownership/
missing period
battre (please use the other)
2010/11/19 16:03:18
Done.
|
| + |
| #if defined(OS_CHROMEOS) |
| scoped_ptr<chromeos::Preferences> chromeos_preferences_; |