| Index: content/browser/loader/navigation_url_loader_network_service.cc
|
| diff --git a/content/browser/loader/navigation_url_loader_network_service.cc b/content/browser/loader/navigation_url_loader_network_service.cc
|
| index f484182c77a6da1dc5bcdbfd8f230265fb458370..abd72446ec1b96fb478849411ba4ce7cfa8302e6 100644
|
| --- a/content/browser/loader/navigation_url_loader_network_service.cc
|
| +++ b/content/browser/loader/navigation_url_loader_network_service.cc
|
| @@ -35,6 +35,7 @@
|
| #include "content/public/common/referrer.h"
|
| #include "content/public/common/url_constants.h"
|
| #include "net/base/load_flags.h"
|
| +#include "net/traffic_annotation/network_traffic_annotation.h"
|
| #include "net/url_request/url_request_context.h"
|
|
|
| namespace content {
|
| @@ -104,7 +105,8 @@ class NavigationURLLoaderNetworkService::URLLoaderRequestController {
|
| factory_ptr->CreateLoaderAndStart(
|
| std::move(url_loader_request), 0 /* routing_id? */,
|
| 0 /* request_id? */, mojom::kURLLoadOptionSendSSLInfo,
|
| - *resource_request_, std::move(url_loader_client_ptr));
|
| + *resource_request_, std::move(url_loader_client_ptr),
|
| + NO_TRAFFIC_ANNOTATION_YET);
|
| return;
|
| }
|
|
|
| @@ -154,7 +156,8 @@ class NavigationURLLoaderNetworkService::URLLoaderRequestController {
|
| factory->CreateLoaderAndStart(
|
| std::move(url_loader_request_), 0 /* routing_id? */,
|
| 0 /* request_id? */, mojom::kURLLoadOptionSendSSLInfo,
|
| - *resource_request_, std::move(url_loader_client_ptr_));
|
| + *resource_request_, std::move(url_loader_client_ptr_),
|
| + NO_TRAFFIC_ANNOTATION_YET);
|
| return;
|
| }
|
|
|
|
|