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

Unified Diff: chrome/browser/cocoa/browser_window_cocoa.mm

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/cocoa/browser_window_cocoa.mm
===================================================================
--- chrome/browser/cocoa/browser_window_cocoa.mm (revision 61782)
+++ chrome/browser/cocoa/browser_window_cocoa.mm (working copy)
@@ -402,7 +402,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