Index: content/test/weburl_loader_mock.cc |
diff --git a/content/test/weburl_loader_mock.cc b/content/test/weburl_loader_mock.cc |
index 056564a839cf96be509cab9fb7b6a2f7a71a7cdb..02047a3c893d20f873b5f0bd2082fcbb222d3883 100644 |
--- a/content/test/weburl_loader_mock.cc |
+++ b/content/test/weburl_loader_mock.cc |
@@ -58,6 +58,7 @@ blink::WebURLRequest WebURLLoaderMock::ServeRedirect( |
const blink::WebURLResponse& redirectResponse) { |
blink::WebURLRequest newRequest; |
newRequest.initialize(); |
+ newRequest.setRequestContext(blink::WebURLRequest::RequestContextInternal); |
GURL redirectURL(redirectResponse.httpHeaderField("Location")); |
newRequest.setURL(redirectURL); |
client_->willSendRequest(this, newRequest, redirectResponse); |