| Index: chrome/test/testing_profile.h
|
| diff --git a/chrome/test/testing_profile.h b/chrome/test/testing_profile.h
|
| index 6e6b6b4d38ece3317434b0ccc40f25c26d29e15c..3469c337fa5792f2787087473962ba3d2edbd305 100644
|
| --- a/chrome/test/testing_profile.h
|
| +++ b/chrome/test/testing_profile.h
|
| @@ -25,6 +25,7 @@ class BookmarkModel;
|
| class BrowserThemeProvider;
|
| class CommandLine;
|
| class DesktopNotificationService;
|
| +class ExtensionPrefs;
|
| class FaviconService;
|
| class FindBarState;
|
| class GeolocationContentSettingsMap;
|
| @@ -328,7 +329,7 @@ class TestingProfile : public Profile {
|
| // from the destructor.
|
| void DestroyWebDataService();
|
|
|
| - // Creates a TestingPrefService and associates it with the TestingProfile
|
| + // Creates a TestingPrefService and associates it with the TestingProfile.
|
| void CreateTestingPrefService();
|
|
|
| // The favicon service. Only created if CreateFaviconService is invoked.
|
| @@ -404,6 +405,10 @@ class TestingProfile : public Profile {
|
| FilePath last_selected_directory_;
|
| scoped_refptr<history::TopSites> top_sites_; // For history and thumbnails.
|
|
|
| + // The Extension Preferences. Only created if CreateExtensionsService is
|
| + // invoked.
|
| + scoped_ptr<ExtensionPrefs> extension_prefs_;
|
| +
|
| // For properly notifying the ExtensionsService when the profile
|
| // is disposed.
|
| scoped_refptr<ExtensionsService> extensions_service_;
|
|
|