Index: content/browser/frame_host/navigation_handle_impl_unittest.cc |
diff --git a/content/browser/frame_host/navigation_handle_impl_unittest.cc b/content/browser/frame_host/navigation_handle_impl_unittest.cc |
index 4ff65971d667e07a53cfbb59ae26f7f925a0b7a5..94ec8ef07771fb3a547b9fab25c8a71a44736aff 100644 |
--- a/content/browser/frame_host/navigation_handle_impl_unittest.cc |
+++ b/content/browser/frame_host/navigation_handle_impl_unittest.cc |
@@ -197,21 +197,21 @@ class NavigationHandleImplTest : public RenderViewHostImplTestHarness { |
TEST_F(NavigationHandleImplTest, SimpleDataChecks) { |
SimulateWillStartRequest(); |
EXPECT_EQ(REQUEST_CONTEXT_TYPE_LOCATION, |
- test_handle()->GetRequestContextType()); |
+ test_handle()->request_context_type()); |
EXPECT_EQ(net::HttpResponseInfo::CONNECTION_INFO_UNKNOWN, |
test_handle()->GetConnectionInfo()); |
test_handle()->Resume(); |
SimulateWillRedirectRequest(); |
EXPECT_EQ(REQUEST_CONTEXT_TYPE_LOCATION, |
- test_handle()->GetRequestContextType()); |
+ test_handle()->request_context_type()); |
EXPECT_EQ(net::HttpResponseInfo::CONNECTION_INFO_HTTP1_1, |
test_handle()->GetConnectionInfo()); |
test_handle()->Resume(); |
SimulateWillProcessResponse(); |
EXPECT_EQ(REQUEST_CONTEXT_TYPE_LOCATION, |
- test_handle()->GetRequestContextType()); |
+ test_handle()->request_context_type()); |
EXPECT_EQ(net::HttpResponseInfo::CONNECTION_INFO_QUIC_35, |
test_handle()->GetConnectionInfo()); |
} |