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

Unified Diff: content/renderer/browser_plugin/browser_plugin_browsertest.cc

Issue 10830308: Switch to EXPECT_FALSE to keep gcc 4.6 happy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/browser_plugin/browser_plugin_browsertest.cc
diff --git a/content/renderer/browser_plugin/browser_plugin_browsertest.cc b/content/renderer/browser_plugin/browser_plugin_browsertest.cc
index 0e1fa0e464bf06198b326504f65d1fdcb0d13946..7afdd9a8102c0d1f173f0c5d72d52d93b2981c1e 100644
--- a/content/renderer/browser_plugin/browser_plugin_browsertest.cc
+++ b/content/renderer/browser_plugin/browser_plugin_browsertest.cc
@@ -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*>(
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698