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

Unified Diff: chrome/browser/ui/intents/web_intent_picker_controller.cc

Issue 10356052: Disable off-store extension installs by default. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: cleanup Created 8 years, 7 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
« no previous file with comments | « chrome/browser/extensions/webstore_installer.cc ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/intents/web_intent_picker_controller.cc
diff --git a/chrome/browser/ui/intents/web_intent_picker_controller.cc b/chrome/browser/ui/intents/web_intent_picker_controller.cc
index daa7ace9984d7910fff810006c3bbec9f734413d..f4d0fbf6260c7cd1a5a3bf39871ee48a36a8d519 100644
--- a/chrome/browser/ui/intents/web_intent_picker_controller.cc
+++ b/chrome/browser/ui/intents/web_intent_picker_controller.cc
@@ -307,10 +307,15 @@ void WebIntentPickerController::OnInlineDispositionWebContentsCreated(
void WebIntentPickerController::OnExtensionInstallRequested(
const std::string& id) {
+ // Only need to set extension_id, manifest, etc, if we want to skip the
Mihai Parparita -not on Chrome 2012/05/14 23:25:04 Nit: You could enforce this by making Approval int
Aaron Boodman 2012/05/15 05:30:07 Done, trybotting.
+ // install dialog.
+ scoped_ptr<WebstoreInstaller::Approval> approval(
+ new WebstoreInstaller::Approval());
+ approval->profile = wrapper_->profile();
+
scoped_refptr<WebstoreInstaller> installer = new WebstoreInstaller(
wrapper_->profile(), this, &wrapper_->web_contents()->GetController(), id,
- scoped_ptr<WebstoreInstaller::Approval>(NULL),
- WebstoreInstaller::FLAG_INLINE_INSTALL);
+ approval.Pass(), WebstoreInstaller::FLAG_INLINE_INSTALL);
pending_async_count_++;
installer->Start();
« no previous file with comments | « chrome/browser/extensions/webstore_installer.cc ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698