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

Unified Diff: ios/web/navigation/web_load_params.mm

Issue 1836543002: [ios] Removed RequestTracker dependency from WebLoadParams. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
« no previous file with comments | « ios/web/navigation/web_load_params.h ('k') | ios/web/web_state/ui/crw_web_controller.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/web/navigation/web_load_params.mm
diff --git a/ios/web/navigation/web_load_params.mm b/ios/web/navigation/web_load_params.mm
index 2c5a82c3ae8a1eb6f23fd2608dd1dede1f25661b..ddb60670e93dbdbe2b76700bf20d2df9d14b8f5b 100644
--- a/ios/web/navigation/web_load_params.mm
+++ b/ios/web/navigation/web_load_params.mm
@@ -10,7 +10,6 @@ WebLoadParams::WebLoadParams(const GURL& url)
: url(url),
transition_type(ui::PAGE_TRANSITION_LINK),
is_renderer_initiated(false),
- cache_mode(net::RequestTracker::CACHE_NORMAL),
post_data(NULL) {
}
@@ -21,7 +20,6 @@ WebLoadParams::WebLoadParams(const WebLoadParams& other)
referrer(other.referrer),
transition_type(other.transition_type),
is_renderer_initiated(other.is_renderer_initiated),
- cache_mode(other.cache_mode),
extra_headers([other.extra_headers copy]),
post_data([other.post_data copy]) {
}
@@ -32,7 +30,6 @@ WebLoadParams& WebLoadParams::operator=(
referrer = other.referrer;
is_renderer_initiated = other.is_renderer_initiated;
transition_type = other.transition_type;
- cache_mode = other.cache_mode;
extra_headers.reset([other.extra_headers copy]);
post_data.reset([other.post_data copy]);
« no previous file with comments | « ios/web/navigation/web_load_params.h ('k') | ios/web/web_state/ui/crw_web_controller.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698