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

Unified Diff: chrome/browser/extensions/extensions_service.h

Issue 140018: Make ExtensionPrefs paths relative, re-enable 2 ExtensionsService unit_tests (Closed)
Patch Set: final changes Created 11 years, 6 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
« no previous file with comments | « chrome/browser/extensions/extension_prefs.cc ('k') | chrome/browser/extensions/extensions_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extensions_service.h
diff --git a/chrome/browser/extensions/extensions_service.h b/chrome/browser/extensions/extensions_service.h
index b239422d9d067672fcbd29f25aa5fb2850f39d83..ea83cd240d6264941530e0bab3574236b9a4c908 100644
--- a/chrome/browser/extensions/extensions_service.h
+++ b/chrome/browser/extensions/extensions_service.h
@@ -74,8 +74,14 @@ class ExtensionsService
// The signature follows.
};
+ // The name of the directory inside the profile where extensions are
+ // installed to.
+ static const char* kInstallDirectoryName;
+
ExtensionsService(Profile* profile,
const CommandLine* command_line,
+ PrefService* prefs,
+ const FilePath& install_directory,
MessageLoop* frontend_loop,
MessageLoop* backend_loop);
~ExtensionsService();
@@ -196,10 +202,6 @@ class ExtensionsService
void OnExtensionOverinstallAttempted(const std::string& id,
const FilePath& path);
- // The name of the directory inside the profile where extensions are
- // installed to.
- static const char* kInstallDirectoryName;
-
// Preferences for the owning profile.
scoped_ptr<ExtensionPrefs> extension_prefs_;
« no previous file with comments | « chrome/browser/extensions/extension_prefs.cc ('k') | chrome/browser/extensions/extensions_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698