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

Unified Diff: content/child/resource_dispatcher_unittest.cc

Issue 1970693002: Use mojo for Chrome Loading, Part 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 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/child/resource_dispatcher_unittest.cc
diff --git a/content/child/resource_dispatcher_unittest.cc b/content/child/resource_dispatcher_unittest.cc
index 141e316e8acb8477bcd63e54446b6b76d3a4d5b1..144e45998da4137a24a0c5a885f2f883c94726d3 100644
--- a/content/child/resource_dispatcher_unittest.cc
+++ b/content/child/resource_dispatcher_unittest.cc
@@ -331,8 +331,9 @@ class ResourceDispatcherTest : public testing::Test, public IPC::Sender {
TestRequestPeer::Context* peer_context) {
std::unique_ptr<TestRequestPeer> peer(
new TestRequestPeer(dispatcher(), peer_context));
- int request_id =
- dispatcher()->StartAsync(request_info, request_body, std::move(peer));
+ int request_id = dispatcher()->StartAsync(
+ request_info, request_body, std::move(peer),
+ blink::WebURLRequest::LoadingIPCType::ChromeIPC, nullptr);
peer_context->request_id = request_id;
return request_id;
}

Powered by Google App Engine
This is Rietveld 408576698