summaryrefslogtreecommitdiff
path: root/Source/WebKit2/UIProcess/WebPageProxy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebKit2/UIProcess/WebPageProxy.cpp')
-rw-r--r--Source/WebKit2/UIProcess/WebPageProxy.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/Source/WebKit2/UIProcess/WebPageProxy.cpp b/Source/WebKit2/UIProcess/WebPageProxy.cpp
index 85fdbf8ed..3e221a920 100644
--- a/Source/WebKit2/UIProcess/WebPageProxy.cpp
+++ b/Source/WebKit2/UIProcess/WebPageProxy.cpp
@@ -348,7 +348,6 @@ WebPageProxy::WebPageProxy(PageClient& pageClient, WebProcessProxy& process, uin
, m_alwaysRunsAtForegroundPriority(m_configuration->alwaysRunsAtForegroundPriority())
#endif
, m_backForwardList(WebBackForwardList::create(*this))
- , m_loadStateAtProcessExit(FrameLoadState::LoadStateFinished)
, m_maintainsInactiveSelection(false)
, m_isEditable(false)
, m_textZoomFactor(1)
@@ -5137,10 +5136,8 @@ void WebPageProxy::resetStateAfterProcessExited()
m_editorState = EditorState();
- if (m_mainFrame) {
+ if (m_mainFrame)
m_urlAtProcessExit = m_mainFrame->url();
- m_loadStateAtProcessExit = m_mainFrame->loadState();
- }
m_pageClient.processDidExit();