| Index: chrome/browser/extensions/crx_installer.cc
|
| ===================================================================
|
| --- chrome/browser/extensions/crx_installer.cc (revision 137574)
|
| +++ chrome/browser/extensions/crx_installer.cc (working copy)
|
| @@ -86,16 +86,15 @@
|
| return;
|
|
|
| CHECK(profile_->IsSameProfile(approval->profile));
|
| +
|
| client_->set_use_app_installed_bubble(approval->use_app_installed_bubble);
|
| client_->set_skip_post_install_ui(approval->skip_post_install_ui);
|
|
|
| - if (approval->skip_install_dialog) {
|
| - // Mark the extension as approved, but save the expected manifest and ID
|
| - // so we can check that they match the CRX's.
|
| - approved_ = true;
|
| - expected_manifest_.reset(approval->parsed_manifest->DeepCopy());
|
| - expected_id_ = approval->extension_id;
|
| - }
|
| + // Mark the extension as approved, but save the expected manifest and ID
|
| + // so we can check that they match the CRX's.
|
| + approved_ = true;
|
| + expected_manifest_.reset(approval->parsed_manifest->DeepCopy());
|
| + expected_id_ = approval->extension_id;
|
| }
|
|
|
| CrxInstaller::~CrxInstaller() {
|
|
|