Changeset 159088 in webkit


Ignore:
Timestamp:
Nov 11, 2013 5:17:37 PM (10 years ago)
Author:
andersca@apple.com
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:
Location:
trunk/Source/WebKit2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r159084 r159088  
     12013-11-11  Anders Carlsson  <andersca@apple.com>
     2
     3        Remove unused Qt cruft
     4        https://bugs.webkit.org/show_bug.cgi?id=124174
     5
     6        Reviewed by Tim Horton.
     7
     8        * UIProcess/WebPageProxy.cpp:
     9        (WebKit::WebPageProxy::WebPageProxy):
     10        (WebKit::WebPageProxy::resetStateAfterProcessExited):
     11        * UIProcess/WebPageProxy.h:
     12
    1132013-11-11  Anders Carlsson  <andersca@apple.com>
    214
  • trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp

    r159077 r159088  
    239239    , m_viewState(ViewState::NoFlags)
    240240    , m_backForwardList(WebBackForwardList::create(this))
    241     , m_loadStateAtProcessExit(FrameLoadState::LoadStateFinished)
    242241    , m_temporarilyClosedComposition(false)
    243242    , m_textZoomFactor(1)
     
    37873786    m_waitingForDidUpdateViewState = false;
    37883787
    3789     if (m_mainFrame) {
    3790         m_urlAtProcessExit = m_mainFrame->url();
    3791         m_loadStateAtProcessExit = m_mainFrame->loadState();
    3792     }
    3793 
    37943788    resetState();
    37953789
  • trunk/Source/WebKit2/UIProcess/WebPageProxy.h

    r159077 r159088  
    610610    PassRefPtr<ImmutableArray> relatedPages() const;
    611611
    612     const String& urlAtProcessExit() const { return m_urlAtProcessExit; }
    613     FrameLoadState::LoadState loadStateAtProcessExit() const { return m_loadStateAtProcessExit; }
    614 
    615612#if ENABLE(DRAG_SUPPORT)
    616613    WebCore::DragSession dragSession() const { return m_currentDragSession; }
     
    10901087    String m_toolTip;
    10911088
    1092     String m_urlAtProcessExit;
    1093     FrameLoadState::LoadState m_loadStateAtProcessExit;
    1094 
    10951089    EditorState m_editorState;
    10961090    bool m_temporarilyClosedComposition; // Editor state changed from hasComposition to !hasComposition, but that was only with shouldIgnoreCompositionSelectionChange yet.
Note: See TracChangeset for help on using the changeset viewer.