Changeset 55626 in webkit


Ignore:
Timestamp:
Mar 6, 2010 7:30:40 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-03-06 Darin Fisher <darin@chromium.org>

Reviewed by David Levin.

[Chromium] Embedder initiated loads should not always stop existing loads
https://bugs.webkit.org/show_bug.cgi?id=33862

  • src/WebFrameImpl.cpp: (WebKit::WebFrameImpl::reload): (WebKit::WebFrameImpl::loadRequest): (WebKit::WebFrameImpl::loadHistoryItem): (WebKit::WebFrameImpl::loadData):
Location:
trunk/WebKit/chromium
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/chromium/ChangeLog

    r55625 r55626  
     12010-03-06  Darin Fisher  <darin@chromium.org>
     2
     3        Reviewed by David Levin.
     4
     5        [Chromium] Embedder initiated loads should not always stop existing loads
     6        https://bugs.webkit.org/show_bug.cgi?id=33862
     7
     8        * src/WebFrameImpl.cpp:
     9        (WebKit::WebFrameImpl::reload):
     10        (WebKit::WebFrameImpl::loadRequest):
     11        (WebKit::WebFrameImpl::loadHistoryItem):
     12        (WebKit::WebFrameImpl::loadData):
     13
    1142010-03-06  Darin Fisher  <darin@chromium.org>
    215
  • trunk/WebKit/chromium/src/WebFrameImpl.cpp

    r55346 r55626  
    717717{
    718718    m_frame->loader()->history()->saveDocumentAndScrollState();
    719 
    720     stopLoading();  // Make sure existing activity stops.
    721 
    722719    m_frame->loader()->reload(ignoreCache);
    723720}
     
    733730    }
    734731
    735     stopLoading();  // Make sure existing activity stops.
    736732    m_frame->loader()->load(resourceRequest, false);
    737733}
     
    741737    RefPtr<HistoryItem> historyItem = PassRefPtr<HistoryItem>(item);
    742738    ASSERT(historyItem.get());
    743 
    744     stopLoading();  // Make sure existing activity stops.
    745739
    746740    // If there is no currentItem, which happens when we are navigating in
     
    779773        request = m_frame->loader()->originalRequest();
    780774    request.setURL(baseURL);
    781 
    782     stopLoading();  // Make sure existing activity stops.
    783775
    784776    m_frame->loader()->load(request, substData, false);
Note: See TracChangeset for help on using the changeset viewer.