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

Unified Diff: content/browser/loader/mojo_async_resource_handler_unittest.cc

Issue 2817033002: Plumb the net::SSLInfo to the browser process when it's using the network service. (Closed)
Patch Set: add tests Created 3 years, 8 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/browser/loader/mojo_async_resource_handler_unittest.cc
diff --git a/content/browser/loader/mojo_async_resource_handler_unittest.cc b/content/browser/loader/mojo_async_resource_handler_unittest.cc
index 46c4cf05e278d5d7288fccdd2830dcfc85d56581..a0320e0bf1b0bb7f1fcd7696faf67af5242f1ebd 100644
--- a/content/browser/loader/mojo_async_resource_handler_unittest.cc
+++ b/content/browser/loader/mojo_async_resource_handler_unittest.cc
@@ -292,6 +292,7 @@ class TestURLLoaderFactory final : public mojom::URLLoaderFactory {
void CreateLoaderAndStart(mojom::URLLoaderAssociatedRequest request,
int32_t routing_id,
int32_t request_id,
+ int32_t options,
const ResourceRequest& url_request,
mojom::URLLoaderClientPtr client_ptr) override {
loader_request_ = std::move(request);
@@ -354,7 +355,7 @@ class MojoAsyncResourceHandlerTestBase {
mojo::MakeRequest(&url_loader_factory_));
url_loader_factory_->CreateLoaderAndStart(
- mojo::MakeRequest(&url_loader_proxy_), kRouteId, kRequestId, request,
+ mojo::MakeRequest(&url_loader_proxy_), kRouteId, kRequestId, 0, request,
url_loader_client_.CreateInterfacePtr());
url_loader_factory_.FlushForTesting();

Powered by Google App Engine
This is Rietveld 408576698