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

Unified Diff: chrome/browser/download/download_crx_util.cc

Issue 10626007: Move ExtensionSystem into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Master merge; moved class declaration Created 8 years, 5 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/download/download_crx_util.cc
diff --git a/chrome/browser/download/download_crx_util.cc b/chrome/browser/download/download_crx_util.cc
index ef66f268b9c1a1767c4856fc93c88a1f93786c26..016bac088ea3d0f8ffaf6baf2daef5f836a21315 100644
--- a/chrome/browser/download/download_crx_util.cc
+++ b/chrome/browser/download/download_crx_util.cc
@@ -47,8 +47,8 @@ ExtensionInstallPrompt* CreateExtensionInstallPrompt(Profile* profile) {
}
bool OffStoreInstallAllowedByPrefs(Profile* profile, const DownloadItem& item) {
- extensions::ExtensionPrefs* prefs =
- ExtensionSystem::Get(profile)->extension_service()->extension_prefs();
+ extensions::ExtensionPrefs* prefs = extensions::ExtensionSystem::Get(
+ profile)->extension_service()->extension_prefs();
CHECK(prefs);
URLPatternSet url_patterns = prefs->GetAllowedInstallSites();

Powered by Google App Engine
This is Rietveld 408576698