Index: content/browser/web_contents/web_contents_impl_unittest.cc |
diff --git a/content/browser/web_contents/web_contents_impl_unittest.cc b/content/browser/web_contents/web_contents_impl_unittest.cc |
index 7bd11f69cd87c200c115c8cfbede9fd062434ad0..f26a0f74b4fbac957cf3cad6be8c828e2522662b 100644 |
--- a/content/browser/web_contents/web_contents_impl_unittest.cc |
+++ b/content/browser/web_contents/web_contents_impl_unittest.cc |
@@ -257,7 +257,8 @@ class TestWebContentsObserver : public WebContentsObserver { |
void DidFailLoad(RenderFrameHost* render_frame_host, |
const GURL& validated_url, |
int error_code, |
- const base::string16& error_description) override { |
+ const base::string16& error_description, |
+ bool was_ignored_by_handler) override { |
last_url_ = validated_url; |
} |
@@ -2458,7 +2459,7 @@ TEST_F(WebContentsImplTest, FilterURLs) { |
// Check that an IPC with about:whatever is correctly normalized. |
other_contents->TestDidFailLoadWithError( |
- url_from_ipc, 1, base::string16()); |
+ url_from_ipc, 1, base::string16(), false); |
EXPECT_EQ(url_normalized, other_observer.last_url()); |
} |