Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1290)

Unified Diff: content/public/browser/navigation_controller.cc

Issue 2038233002: Using ResourceRequestBody as the type of HTTP body outside of //content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@make-resource-request-body-public
Patch Set: Addressed CR feedback from creis@. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/public/browser/navigation_controller.cc
diff --git a/content/public/browser/navigation_controller.cc b/content/public/browser/navigation_controller.cc
index f8ab05f4221c866868f0721f82b9b18e43decfef..ae63046ba07d378ccb6ab0b586d72902bf7e63ac 100644
--- a/content/public/browser/navigation_controller.cc
+++ b/content/public/browser/navigation_controller.cc
@@ -16,7 +16,7 @@ NavigationController::LoadURLParams::LoadURLParams(const GURL& url)
frame_tree_node_id(-1),
is_renderer_initiated(false),
override_user_agent(UA_OVERRIDE_INHERIT),
- browser_initiated_post_data(nullptr),
+ post_data(nullptr),
can_load_local_resources(false),
should_replace_current_entry(false),
#if defined(OS_ANDROID)
@@ -42,7 +42,7 @@ NavigationController::LoadURLParams::LoadURLParams(
transferred_global_request_id(other.transferred_global_request_id),
base_url_for_data_url(other.base_url_for_data_url),
virtual_url_for_data_url(other.virtual_url_for_data_url),
- browser_initiated_post_data(other.browser_initiated_post_data),
+ post_data(other.post_data),
should_replace_current_entry(false),
#if defined(OS_ANDROID)
intent_received_timestamp(other.intent_received_timestamp),
@@ -66,7 +66,7 @@ NavigationController::LoadURLParams::operator=(
transferred_global_request_id = other.transferred_global_request_id;
base_url_for_data_url = other.base_url_for_data_url;
virtual_url_for_data_url = other.virtual_url_for_data_url;
- browser_initiated_post_data = other.browser_initiated_post_data;
+ post_data = other.post_data;
should_replace_current_entry = other.should_replace_current_entry;
should_clear_history_list = other.should_clear_history_list;
#if defined(OS_ANDROID)

Powered by Google App Engine
This is Rietveld 408576698