| Index: content/common/navigation_params.cc
|
| diff --git a/content/common/navigation_params.cc b/content/common/navigation_params.cc
|
| index 613918e74abc842648c5d7f7ed4e03c7780c6995..e1307679049fc9366a9fbddf28b042a04d973d0b 100644
|
| --- a/content/common/navigation_params.cc
|
| +++ b/content/common/navigation_params.cc
|
| @@ -83,8 +83,8 @@ BeginNavigationParams::BeginNavigationParams()
|
| has_user_gesture(false),
|
| skip_service_worker(false),
|
| request_context_type(REQUEST_CONTEXT_TYPE_LOCATION),
|
| - mixed_content_context_type(blink::WebMixedContentContextType::Blockable) {
|
| -}
|
| + mixed_content_context_type(blink::WebMixedContentContextType::Blockable),
|
| + renderer_navigation_id(-1) {}
|
|
|
| BeginNavigationParams::BeginNavigationParams(
|
| std::string headers,
|
| @@ -93,14 +93,16 @@ BeginNavigationParams::BeginNavigationParams(
|
| bool skip_service_worker,
|
| RequestContextType request_context_type,
|
| blink::WebMixedContentContextType mixed_content_context_type,
|
| - const base::Optional<url::Origin>& initiator_origin)
|
| + const base::Optional<url::Origin>& initiator_origin,
|
| + int renderer_navigation_id)
|
| : headers(headers),
|
| load_flags(load_flags),
|
| has_user_gesture(has_user_gesture),
|
| skip_service_worker(skip_service_worker),
|
| request_context_type(request_context_type),
|
| mixed_content_context_type(mixed_content_context_type),
|
| - initiator_origin(initiator_origin) {}
|
| + initiator_origin(initiator_origin),
|
| + renderer_navigation_id(renderer_navigation_id) {}
|
|
|
| BeginNavigationParams::BeginNavigationParams(
|
| const BeginNavigationParams& other) = default;
|
|
|