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

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

Issue 10700117: Replaced static URLRequestFileJob factory with non-static protocol handler for File jobs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed merge 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
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 7afdd9a8102c0d1f173f0c5d72d52d93b2981c1e..0e1fa0e464bf06198b326504f65d1fdcb0d13946 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_FALSE(params.resize_pending);
+ EXPECT_EQ(false, params.resize_pending);
mmenke 2012/08/15 14:57:16 Why this change? Doesn't seem to belong in this C
shalev 2012/08/15 21:23:41 Oops, this change is not supposed to be here (it w
MockBrowserPlugin* browser_plugin =
static_cast<MockBrowserPlugin*>(

Powered by Google App Engine
This is Rietveld 408576698