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

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: Created 4 years, 6 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 8882db6a13b8113466ef034a56d787f7279d11bc..65f288e4e7fadff172ecd06d152f1b7c42f7e169 100644
--- a/content/child/resource_dispatcher_unittest.cc
+++ b/content/child/resource_dispatcher_unittest.cc
@@ -321,8 +321,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