| Index: content/browser/frame_host/render_frame_host_impl.h
|
| diff --git a/content/browser/frame_host/render_frame_host_impl.h b/content/browser/frame_host/render_frame_host_impl.h
|
| index 0d5628798eb26c4c56a43b2fe1323f273e21f6fb..d1d5923638d36d975657b721f09718fc37e690a8 100644
|
| --- a/content/browser/frame_host/render_frame_host_impl.h
|
| +++ b/content/browser/frame_host/render_frame_host_impl.h
|
| @@ -567,10 +567,10 @@ class CONTENT_EXPORT RenderFrameHostImpl
|
|
|
| void SetHasReceivedUserGesture();
|
|
|
| - // PlzNavigate: returns the LoFi state of the last successful navigation that
|
| - // made a network request.
|
| - LoFiState last_navigation_lofi_state() const {
|
| - return last_navigation_lofi_state_;
|
| + // PlzNavigate: returns the Previews state of the last successful navigation
|
| + // that made a network request.
|
| + int last_navigation_previews_state() const {
|
| + return last_navigation_previews_state_;
|
| }
|
|
|
| protected:
|
| @@ -1049,10 +1049,10 @@ class CONTENT_EXPORT RenderFrameHostImpl
|
| // If true, then the RenderFrame has selected text.
|
| bool has_selection_;
|
|
|
| - // PlzNavigate: The LoFi state of the last navigation. This is used during
|
| + // PlzNavigate: The Previews state of the last navigation. This is used during
|
| // history navigation of subframes to ensure that subframes navigate with the
|
| - // same LoFi status as the top-level frame.
|
| - LoFiState last_navigation_lofi_state_;
|
| + // same Previews status as the top-level frame.
|
| + int last_navigation_previews_state_;
|
|
|
| mojo::Binding<mojom::FrameHost> frame_host_binding_;
|
| mojom::FramePtr frame_;
|
|
|