summaryrefslogtreecommitdiffstats
path: root/chrome/test/testing_profile.h
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-14 11:09:00 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-14 11:09:00 +0000
commiteaa7dd18773869211fa0e19ed84392830c0978a8 (patch)
treed45899744e75811ef8a717f83580aab9ef6bf238 /chrome/test/testing_profile.h
parent257ff5de808c52da6432b7f458b456b99a4d5278 (diff)
downloadchromium_src-eaa7dd18773869211fa0e19ed84392830c0978a8.zip
chromium_src-eaa7dd18773869211fa0e19ed84392830c0978a8.tar.gz
chromium_src-eaa7dd18773869211fa0e19ed84392830c0978a8.tar.bz2
Rename ExtensionsService to ExtensionService.
BUG=61409 TEST=trybots Review URL: http://codereview.chromium.org/5730004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69117 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/testing_profile.h')
-rw-r--r--chrome/test/testing_profile.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/chrome/test/testing_profile.h b/chrome/test/testing_profile.h
index 53a1fb6..847093e 100644
--- a/chrome/test/testing_profile.h
+++ b/chrome/test/testing_profile.h
@@ -111,11 +111,11 @@ class TestingProfile : public Profile {
// ownership of |theme_provider|.
void UseThemeProvider(BrowserThemeProvider* theme_provider);
- // Creates an ExtensionsService initialized with the testing profile and
+ // Creates an ExtensionService initialized with the testing profile and
// returns it. The profile keeps its own copy of a scoped_refptr to the
- // ExtensionsService to make sure that is still alive to be notified when the
+ // ExtensionService to make sure that is still alive to be notified when the
// profile is destroyed.
- scoped_refptr<ExtensionsService> CreateExtensionsService(
+ scoped_refptr<ExtensionService> CreateExtensionService(
const CommandLine* command_line,
const FilePath& install_directory);
@@ -142,7 +142,7 @@ class TestingProfile : public Profile {
virtual ChromeAppCacheService* GetAppCacheService() { return NULL; }
virtual webkit_database::DatabaseTracker* GetDatabaseTracker();
virtual VisitedLinkMaster* GetVisitedLinkMaster() { return NULL; }
- virtual ExtensionsService* GetExtensionsService();
+ virtual ExtensionService* GetExtensionService();
virtual UserScriptMaster* GetUserScriptMaster() { return NULL; }
virtual ExtensionDevToolsManager* GetExtensionDevToolsManager() {
return NULL;
@@ -412,13 +412,13 @@ class TestingProfile : public Profile {
// Extension pref store, created for use by |extension_prefs_|.
scoped_ptr<ExtensionPrefStore> extension_pref_store_;
- // The Extension Preferences. Only created if CreateExtensionsService is
+ // The Extension Preferences. Only created if CreateExtensionService is
// invoked.
scoped_ptr<ExtensionPrefs> extension_prefs_;
- // For properly notifying the ExtensionsService when the profile
+ // For properly notifying the ExtensionService when the profile
// is disposed.
- scoped_refptr<ExtensionsService> extensions_service_;
+ scoped_refptr<ExtensionService> extensions_service_;
// The proxy prefs tracker.
scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_;