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

Unified Diff: chrome/browser/tab_contents/tab_contents.cc

Issue 5917001: Change the "Disable outdated plug-ins" lab to block them instead. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: string change Created 10 years 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/tab_contents/tab_contents.cc
diff --git a/chrome/browser/tab_contents/tab_contents.cc b/chrome/browser/tab_contents/tab_contents.cc
index 4215528e02daaaa2cc4c9f02be2f7ca7fbceb11d..1a8de94a5ee758fbffc298d2b627cee775dfabd6 100644
--- a/chrome/browser/tab_contents/tab_contents.cc
+++ b/chrome/browser/tab_contents/tab_contents.cc
@@ -288,9 +288,8 @@ class DisabledPluginInfoBar : public ConfirmInfoBarDelegate {
}
virtual bool Cancel() {
- tab_contents_->OpenURL(GURL(chrome::kChromeUIPluginsURL), GURL(),
- NEW_FOREGROUND_TAB, PageTransition::LINK);
- return false;
+ tab_contents_->render_view_host()->LoadBlockedPlugins();
+ return true;
}
virtual bool LinkClicked(WindowOpenDisposition disposition) {

Powered by Google App Engine
This is Rietveld 408576698