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

Unified Diff: chrome/browser/gtk/browser_window_gtk.cc

Issue 3519016: Enable the new page info bubble by default. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 2 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
Index: chrome/browser/gtk/browser_window_gtk.cc
===================================================================
--- chrome/browser/gtk/browser_window_gtk.cc (revision 61782)
+++ chrome/browser/gtk/browser_window_gtk.cc (working copy)
@@ -1024,7 +1024,7 @@
const NavigationEntry::SSLStatus& ssl,
bool show_history) {
const CommandLine* command_line(CommandLine::ForCurrentProcess());
- if (command_line->HasSwitch(switches::kEnableNewPageInfoBubble))
+ if (!command_line->HasSwitch(switches::kDisableNewPageInfoBubble))
browser::ShowPageInfoBubble(window_, profile, url, ssl, show_history);
else
browser::ShowPageInfo(window_, profile, url, ssl, show_history);

Powered by Google App Engine
This is Rietveld 408576698