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

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

Issue 5730004: Rename ExtensionsService to ExtensionService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix typo Created 10 years 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
« no previous file with comments | « chrome/browser/profiles/profile_impl.h ('k') | chrome/browser/renderer_host/browser_render_process_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/profiles/profile_impl.cc
diff --git a/chrome/browser/profiles/profile_impl.cc b/chrome/browser/profiles/profile_impl.cc
index f2f9cde422e9d51bccb25451d64bb78768ffee72..3312a7e377394a3233ed83410ade8330b47b523b 100644
--- a/chrome/browser/profiles/profile_impl.cc
+++ b/chrome/browser/profiles/profile_impl.cc
@@ -37,7 +37,7 @@
#include "chrome/browser/extensions/extension_message_service.h"
#include "chrome/browser/extensions/extension_pref_store.h"
#include "chrome/browser/extensions/extension_process_manager.h"
-#include "chrome/browser/extensions/extensions_service.h"
+#include "chrome/browser/extensions/extension_service.h"
#include "chrome/browser/extensions/user_script_master.h"
#include "chrome/browser/favicon_service.h"
#include "chrome/browser/file_system/browser_file_system_helper.h"
@@ -352,10 +352,10 @@ void ProfileImpl::InitExtensions() {
// since it isn't used anymore.
user_script_master_ = new UserScriptMaster(script_dir, this);
- extensions_service_ = new ExtensionsService(
+ extensions_service_ = new ExtensionService(
this,
CommandLine::ForCurrentProcess(),
- GetPath().AppendASCII(ExtensionsService::kInstallDirectoryName),
+ GetPath().AppendASCII(ExtensionService::kInstallDirectoryName),
extension_prefs_.get(),
true);
@@ -401,7 +401,7 @@ void ProfileImpl::RegisterComponentExtensions() {
ResourceBundle::GetSharedInstance().GetRawDataResource(
iter->second).as_string();
extensions_service_->register_component_extension(
- ExtensionsService::ComponentExtensionInfo(manifest, path));
+ ExtensionService::ComponentExtensionInfo(manifest, path));
}
}
@@ -419,7 +419,7 @@ void ProfileImpl::InstallDefaultApps() {
if (g_browser_process->GetApplicationLocale() != "en-US")
return;
- ExtensionsService* extensions_service = GetExtensionsService();
+ ExtensionService* extensions_service = GetExtensionService();
const ExtensionIdSet* app_ids =
extensions_service->default_apps()->GetAppsToInstall();
if (!app_ids)
@@ -609,7 +609,7 @@ VisitedLinkMaster* ProfileImpl::GetVisitedLinkMaster() {
return visited_link_master_.get();
}
-ExtensionsService* ProfileImpl::GetExtensionsService() {
+ExtensionService* ProfileImpl::GetExtensionService() {
return extensions_service_.get();
}
@@ -689,7 +689,7 @@ PrefService* ProfileImpl::GetPrefs() {
// as early as possible. The constructor takes care of that.
extension_prefs_.reset(new ExtensionPrefs(
prefs_.get(),
- GetPath().AppendASCII(ExtensionsService::kInstallDirectoryName),
+ GetPath().AppendASCII(ExtensionService::kInstallDirectoryName),
extension_pref_store));
DCHECK(!net_pref_observer_.get());
« no previous file with comments | « chrome/browser/profiles/profile_impl.h ('k') | chrome/browser/renderer_host/browser_render_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698