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

Unified Diff: content/browser/frame_host/navigation_request_info.cc

Issue 2501343003: PlzNavigate: AppCache support. (Closed)
Patch Set: Add DCHECKs for PlzNavigate and fix a double Release problem which caused one unit_test to fail wit… Created 4 years, 1 month 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/browser/frame_host/navigation_request_info.cc
diff --git a/content/browser/frame_host/navigation_request_info.cc b/content/browser/frame_host/navigation_request_info.cc
index 2fa9d97271443ec711ad99ecaf7bd62d2920d8b2..66daab0589d1fd69a30280c77f9c104acf6176e6 100644
--- a/content/browser/frame_host/navigation_request_info.cc
+++ b/content/browser/frame_host/navigation_request_info.cc
@@ -17,7 +17,9 @@ NavigationRequestInfo::NavigationRequestInfo(
bool are_ancestors_secure,
int frame_tree_node_id,
bool is_for_guests_only,
- bool report_raw_headers)
+ bool report_raw_headers,
+ int appcache_host_id,
+ AppCacheServiceImpl* appcache_service)
: common_params(common_params),
begin_params(begin_params),
first_party_for_cookies(first_party_for_cookies),
@@ -27,7 +29,9 @@ NavigationRequestInfo::NavigationRequestInfo(
are_ancestors_secure(are_ancestors_secure),
frame_tree_node_id(frame_tree_node_id),
is_for_guests_only(is_for_guests_only),
- report_raw_headers(report_raw_headers) {}
+ report_raw_headers(report_raw_headers),
+ appcache_host_id(appcache_host_id),
+ appcache_service(appcache_service) {}
NavigationRequestInfo::~NavigationRequestInfo() {}

Powered by Google App Engine
This is Rietveld 408576698