Commit 24ddd0a4 authored by joi@chromium.org's avatar joi@chromium.org

Switch to EXPECT_FALSE to keep gcc 4.6 happy.

BUG=none


Review URL: https://chromiumcodereview.appspot.com/10830308

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151531 0039d316-1c4b-4281-b951-d872f2087c98
parent e87a3031
......@@ -87,7 +87,7 @@ TEST_F(BrowserPluginTest, InitialResize) {
EXPECT_EQ(480, params.height);
// Verify that the browser plugin wasn't already waiting on a resize when this
// resize happened.
EXPECT_EQ(false, params.resize_pending);
EXPECT_FALSE(params.resize_pending);
MockBrowserPlugin* browser_plugin =
static_cast<MockBrowserPlugin*>(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment