Index: content/common/navigation_params.cc |
diff --git a/content/common/navigation_params.cc b/content/common/navigation_params.cc |
index 3d7d14c20f14575d6fc905af8aac69f016a5e1d4..eec2d7f6f86a8a8aea1e92c159fd795a0dca150b 100644 |
--- a/content/common/navigation_params.cc |
+++ b/content/common/navigation_params.cc |
@@ -86,8 +86,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), |
+ is_form_submission(false) {} |
BeginNavigationParams::BeginNavigationParams( |
std::string headers, |
@@ -96,6 +96,7 @@ BeginNavigationParams::BeginNavigationParams( |
bool skip_service_worker, |
RequestContextType request_context_type, |
blink::WebMixedContentContextType mixed_content_context_type, |
+ bool is_form_submission, |
const base::Optional<url::Origin>& initiator_origin) |
: headers(headers), |
load_flags(load_flags), |
@@ -103,6 +104,7 @@ BeginNavigationParams::BeginNavigationParams( |
skip_service_worker(skip_service_worker), |
request_context_type(request_context_type), |
mixed_content_context_type(mixed_content_context_type), |
+ is_form_submission(is_form_submission), |
initiator_origin(initiator_origin) {} |
BeginNavigationParams::BeginNavigationParams( |