| 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();
|
|
|