summaryrefslogtreecommitdiffstats
path: root/chrome/browser/gtk
diff options
context:
space:
mode:
authorfinnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-08 09:12:56 +0000
committerfinnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-08 09:12:56 +0000
commitd7f0b9aea42b3fc2bdf8c81ea24add0f700bb6fe (patch)
treeb6c75dc76e56dff4c2d6283613a5eee6138d264c /chrome/browser/gtk
parent10fb1992b523ce30776c43696f61237a50535036 (diff)
downloadchromium_src-d7f0b9aea42b3fc2bdf8c81ea24add0f700bb6fe.zip
chromium_src-d7f0b9aea42b3fc2bdf8c81ea24add0f700bb6fe.tar.gz
chromium_src-d7f0b9aea42b3fc2bdf8c81ea24add0f700bb6fe.tar.bz2
Enable the new page info bubble by default.
BUG=52916 TEST=None Review URL: http://codereview.chromium.org/3519016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61932 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/gtk')
-rw-r--r--chrome/browser/gtk/browser_window_gtk.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/gtk/browser_window_gtk.cc b/chrome/browser/gtk/browser_window_gtk.cc
index 7527b0f..0653ff8 100644
--- a/chrome/browser/gtk/browser_window_gtk.cc
+++ b/chrome/browser/gtk/browser_window_gtk.cc
@@ -1024,7 +1024,7 @@ void BrowserWindowGtk::ShowPageInfo(Profile* profile,
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);