From 499d90448e2bdcff7583c20a4cd483f963b39463 Mon Sep 17 00:00:00 2001 From: "sky@google.com" Date: Wed, 25 Mar 2009 14:39:31 +0000 Subject: Removes bogus DCHECK in ConfirmInfoBar::ButtonPressed. The DCHECK is bogus as InfoBar adds a button that invokes this method as well. BUG=none TEST=none Review URL: http://codereview.chromium.org/53034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12450 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/views/infobars/infobars.cc | 2 -- 1 file changed, 2 deletions(-) (limited to 'chrome') diff --git a/chrome/browser/views/infobars/infobars.cc b/chrome/browser/views/infobars/infobars.cc index 91111e0..63916bb 100644 --- a/chrome/browser/views/infobars/infobars.cc +++ b/chrome/browser/views/infobars/infobars.cc @@ -431,8 +431,6 @@ void ConfirmInfoBar::ButtonPressed(views::Button* sender) { } else if (sender == cancel_button_) { if (GetDelegate()->Cancel()) RemoveInfoBar(); - } else { - NOTREACHED(); } } -- cgit v1.1