| Index: content/browser/frame_host/navigation_request_info.h
|
| diff --git a/content/browser/frame_host/navigation_request_info.h b/content/browser/frame_host/navigation_request_info.h
|
| index c6bc6b6c8eec33d2473f2c65933b089391711ba9..3f13921b2e91e21182908778d5b20dc1b4d63342 100644
|
| --- a/content/browser/frame_host/navigation_request_info.h
|
| +++ b/content/browser/frame_host/navigation_request_info.h
|
| @@ -23,11 +23,12 @@ class ResourceRequestBody;
|
| // to the IO thread by a NavigationRequest object.
|
| struct CONTENT_EXPORT NavigationRequestInfo {
|
| NavigationRequestInfo(const CommonNavigationParams& common_params,
|
| - const BeginNavigationParams& params,
|
| + const BeginNavigationParams& begin_params,
|
| const GURL& first_party_for_cookies,
|
| bool is_main_frame,
|
| bool parent_is_main_frame,
|
| int frame_tree_node_id,
|
| + int service_worker_provider_id,
|
| scoped_refptr<ResourceRequestBody> request_body);
|
| ~NavigationRequestInfo();
|
|
|
| @@ -42,6 +43,7 @@ struct CONTENT_EXPORT NavigationRequestInfo {
|
| const bool parent_is_main_frame;
|
|
|
| const int frame_tree_node_id;
|
| + const int service_worker_provider_id;
|
|
|
| scoped_refptr<ResourceRequestBody> request_body;
|
| };
|
|
|