From c4c12e9d1a8ee46eacc7252eda9cebc0b0250059 Mon Sep 17 00:00:00 2001 From: "oshima@chromium.org" Date: Mon, 22 Feb 2010 22:56:57 +0000 Subject: Build breakage fix TBR=sky@chromium.org BUG=none TEST=none Review URL: http://codereview.chromium.org/650179 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@39650 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/views/frame/browser_view.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'chrome/browser') diff --git a/chrome/browser/views/frame/browser_view.h b/chrome/browser/views/frame/browser_view.h index 44bf06a..1cf958f 100644 --- a/chrome/browser/views/frame/browser_view.h +++ b/chrome/browser/views/frame/browser_view.h @@ -210,7 +210,7 @@ class BrowserView : public BrowserBubbleHost, // Returns true if the Browser object associated with this BrowserView is a // popup window. bool IsBrowserTypePopup() const { - return browser_->type() & Browser::TYPE_POPUP != 0; + return (browser_->type() & Browser::TYPE_POPUP) != 0; } // Returns true if the frame containing this BrowserView should show the -- cgit v1.1