| Index: content/browser/frame_host/navigation_request.cc
|
| diff --git a/content/browser/frame_host/navigation_request.cc b/content/browser/frame_host/navigation_request.cc
|
| index f8b232d7b44ff05406f70173fac5a33150372bcf..1894ace02831894858da0028841dfa0991d5250f 100644
|
| --- a/content/browser/frame_host/navigation_request.cc
|
| +++ b/content/browser/frame_host/navigation_request.cc
|
| @@ -149,7 +149,7 @@ std::unique_ptr<NavigationRequest> NavigationRequest::CreateBrowserInitiated(
|
| const FrameNavigationEntry& frame_entry,
|
| const NavigationEntryImpl& entry,
|
| FrameMsg_Navigate_Type::Value navigation_type,
|
| - LoFiState lofi_state,
|
| + int previews_state,
|
| bool is_same_document_history_load,
|
| bool is_history_navigation_in_new_child,
|
| const base::TimeTicks& navigation_start,
|
| @@ -162,7 +162,7 @@ std::unique_ptr<NavigationRequest> NavigationRequest::CreateBrowserInitiated(
|
| std::unique_ptr<NavigationRequest> navigation_request(new NavigationRequest(
|
| frame_tree_node, entry.ConstructCommonNavigationParams(
|
| frame_entry, request_body, dest_url, dest_referrer,
|
| - navigation_type, lofi_state, navigation_start),
|
| + navigation_type, previews_state, navigation_start),
|
| BeginNavigationParams(entry.extra_headers(), net::LOAD_NORMAL,
|
| false, // skip_service_worker
|
| REQUEST_CONTEXT_TYPE_LOCATION),
|
| @@ -413,11 +413,8 @@ void NavigationRequest::OnResponseStarted(
|
| ? navigation_handle_->appcache_handle()->appcache_host_id()
|
| : kAppCacheNoHostId;
|
|
|
| - // Update the lofi state of the request.
|
| - if (response->head.is_using_lofi)
|
| - common_params_.lofi_state = LOFI_ON;
|
| - else
|
| - common_params_.lofi_state = LOFI_OFF;
|
| + // Update the previews state of the request.
|
| + common_params_.previews_state = response->head.previews_state;
|
|
|
| // Select an appropriate renderer to commit the navigation.
|
| RenderFrameHostImpl* render_frame_host =
|
|
|