| Index: chrome/browser/automation/automation_provider.cc
|
| diff --git a/chrome/browser/automation/automation_provider.cc b/chrome/browser/automation/automation_provider.cc
|
| index bbfb3c5c9c27a3d32e5fe1b53b4ac17249baa1c0..231e87509617f4e0ef7b0e339f16dc5800033d70 100644
|
| --- a/chrome/browser/automation/automation_provider.cc
|
| +++ b/chrome/browser/automation/automation_provider.cc
|
| @@ -799,7 +799,6 @@ void AutomationProvider::InstallExtension(const FilePath& crx_path,
|
|
|
| scoped_refptr<CrxInstaller> installer(
|
| new CrxInstaller(service, NULL)); // silent install, no UI
|
| - installer->set_allow_privilege_increase(true);
|
| installer->InstallCrx(crx_path);
|
| } else {
|
| AutomationMsg_InstallExtension::WriteReplyParams(
|
| @@ -868,7 +867,6 @@ void AutomationProvider::InstallExtensionAndGetHandle(
|
| ExtensionInstallUI* client =
|
| (with_ui ? new ExtensionInstallUI(profile_) : NULL);
|
| scoped_refptr<CrxInstaller> installer(new CrxInstaller(service, client));
|
| - installer->set_allow_privilege_increase(true);
|
| installer->InstallCrx(crx_path);
|
| } else {
|
| AutomationMsg_InstallExtensionAndGetHandle::WriteReplyParams(
|
|
|