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

Unified Diff: chrome/browser/extensions/extension_system.cc

Issue 9977021: Add ExtensionSytem::Get(Profile*) as a wrapper around (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 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/extensions/extension_system.cc
diff --git a/chrome/browser/extensions/extension_system.cc b/chrome/browser/extensions/extension_system.cc
index 6e4da65a31d2d3a37cb081bd8e9944d470b7a1a2..c72ad6409ae089b2e77d060cfb9d3af506ec937b 100644
--- a/chrome/browser/extensions/extension_system.cc
+++ b/chrome/browser/extensions/extension_system.cc
@@ -46,6 +46,11 @@ ExtensionSystem::ExtensionSystem() {
ExtensionSystem::~ExtensionSystem() {
}
+// static
+ExtensionSystem* ExtensionSystem::Get(Profile* profile) {
+ return ExtensionSystemFactory::GetForProfile(profile);
+}
+
//
// ExtensionSystemImpl::Shared
//

Powered by Google App Engine
This is Rietveld 408576698