| 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() {}
|
|
|
|
|