Title: [159088] trunk/Source/WebKit2
Revision
159088
Author
[email protected]
Date
2013-11-11 17:17:37 -0800 (Mon, 11 Nov 2013)

Log Message

Remove unused Qt cruft
https://bugs.webkit.org/show_bug.cgi?id=124174

Reviewed by Tim Horton.

* UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::WebPageProxy):
(WebKit::WebPageProxy::resetStateAfterProcessExited):
* UIProcess/WebPageProxy.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (159087 => 159088)


--- trunk/Source/WebKit2/ChangeLog	2013-11-12 01:15:25 UTC (rev 159087)
+++ trunk/Source/WebKit2/ChangeLog	2013-11-12 01:17:37 UTC (rev 159088)
@@ -1,5 +1,17 @@
 2013-11-11  Anders Carlsson  <[email protected]>
 
+        Remove unused Qt cruft
+        https://bugs.webkit.org/show_bug.cgi?id=124174
+
+        Reviewed by Tim Horton.
+
+        * UIProcess/WebPageProxy.cpp:
+        (WebKit::WebPageProxy::WebPageProxy):
+        (WebKit::WebPageProxy::resetStateAfterProcessExited):
+        * UIProcess/WebPageProxy.h:
+
+2013-11-11  Anders Carlsson  <[email protected]>
+
         REGRESSION (r158927): curly-braces-escaping.html is broken on Mac WebKit2
         https://bugs.webkit.org/show_bug.cgi?id=124164
 

Modified: trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp (159087 => 159088)


--- trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp	2013-11-12 01:15:25 UTC (rev 159087)
+++ trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp	2013-11-12 01:17:37 UTC (rev 159088)
@@ -238,7 +238,6 @@
     , m_estimatedProgress(0)
     , m_viewState(ViewState::NoFlags)
     , m_backForwardList(WebBackForwardList::create(this))
-    , m_loadStateAtProcessExit(FrameLoadState::LoadStateFinished)
     , m_temporarilyClosedComposition(false)
     , m_textZoomFactor(1)
     , m_pageZoomFactor(1)
@@ -3786,11 +3785,6 @@
     m_isPageSuspended = false;
     m_waitingForDidUpdateViewState = false;
 
-    if (m_mainFrame) {
-        m_urlAtProcessExit = m_mainFrame->url();
-        m_loadStateAtProcessExit = m_mainFrame->loadState();
-    }
-
     resetState();
 
     m_pageClient->clearAllEditCommands();

Modified: trunk/Source/WebKit2/UIProcess/WebPageProxy.h (159087 => 159088)


--- trunk/Source/WebKit2/UIProcess/WebPageProxy.h	2013-11-12 01:15:25 UTC (rev 159087)
+++ trunk/Source/WebKit2/UIProcess/WebPageProxy.h	2013-11-12 01:17:37 UTC (rev 159088)
@@ -609,9 +609,6 @@
 
     PassRefPtr<ImmutableArray> relatedPages() const;
 
-    const String& urlAtProcessExit() const { return m_urlAtProcessExit; }
-    FrameLoadState::LoadState loadStateAtProcessExit() const { return m_loadStateAtProcessExit; }
-
 #if ENABLE(DRAG_SUPPORT)
     WebCore::DragSession dragSession() const { return m_currentDragSession; }
     void resetDragOperation() { m_currentDragSession = WebCore::DragSession(); }
@@ -1089,9 +1086,6 @@
 
     String m_toolTip;
 
-    String m_urlAtProcessExit;
-    FrameLoadState::LoadState m_loadStateAtProcessExit;
-
     EditorState m_editorState;
     bool m_temporarilyClosedComposition; // Editor state changed from hasComposition to !hasComposition, but that was only with shouldIgnoreCompositionSelectionChange yet.
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to