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

Unified Diff: chrome/browser/extensions/crx_installer.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/extensions/crx_installer.cc
diff --git a/chrome/browser/extensions/crx_installer.cc b/chrome/browser/extensions/crx_installer.cc
index e4e7d4aeee23cf49e5abc256f241dbad2ba0bd56..4f41ac6ac8b88c04c9e22ecfc322e5c464057106 100644
--- a/chrome/browser/extensions/crx_installer.cc
+++ b/chrome/browser/extensions/crx_installer.cc
@@ -406,8 +406,8 @@ void CrxInstaller::ConfirmInstall() {
}
string16 error;
- if (!ExtensionSystem::Get(profile_)->management_policy()->UserMayLoad(
- extension_, &error)) {
+ if (!extensions::ExtensionSystem::Get(profile_)->management_policy()->
+ UserMayLoad(extension_, &error)) {
ReportFailureFromUIThread(CrxInstallerError(error));
return;
}

Powered by Google App Engine
This is Rietveld 408576698