Index: chrome/browser/ui/webui/ntp/app_launcher_handler.cc |
diff --git a/chrome/browser/ui/webui/ntp/app_launcher_handler.cc b/chrome/browser/ui/webui/ntp/app_launcher_handler.cc |
index 210cad6d08246e4fd5732f728c8378d738c5c747..a142311833f609d5422e416ceff15b0b1ed444ee 100644 |
--- a/chrome/browser/ui/webui/ntp/app_launcher_handler.cc |
+++ b/chrome/browser/ui/webui/ntp/app_launcher_handler.cc |
@@ -116,7 +116,7 @@ void AppLauncherHandler::CreateAppInfo(const Extension* extension, |
!service->GetTerminatedExtension(extension->id()); |
extension->GetBasicInfo(enabled, value); |
- value->SetBoolean("mayDisable", ExtensionSystem::Get( |
+ value->SetBoolean("mayDisable", extensions::ExtensionSystem::Get( |
service->profile())->management_policy()->UserMayModifySettings( |
extension, NULL)); |
@@ -613,8 +613,8 @@ void AppLauncherHandler::HandleUninstallApp(const ListValue* args) { |
if (!extension) |
return; |
- if (!ExtensionSystem::Get(extension_service_->profile())-> |
- management_policy()->UserMayModifySettings(extension, NULL)) { |
+ if (!extensions::ExtensionSystem::Get(extension_service_->profile())-> |
+ management_policy()->UserMayModifySettings(extension, NULL)) { |
LOG(ERROR) << "Attempt to uninstall an extension that is non-usermanagable " |
<< "was made. Extension id : " << extension->id(); |
return; |