Changeset 62786 in webkit


Ignore:
Timestamp:
Jul 8, 2010 7:26:05 AM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2010-07-08 Lucas De Marchi <lucas.demarchi@profusion.mobi>

Reviewed by Kenneth Rohde Christiansen.

[EFL] Flush backing store when going to new page.
Call client method to flush backing store when going to a new page. This
is the notification that data related to current page should be dropped,
since a new page is being loaded.
https://bugs.webkit.org/show_bug.cgi?id=41008

  • efl/WebCoreSupport/FrameLoaderClientEfl.cpp: (WebCore::FrameLoaderClientEfl::transitionToCommittedForNewPage):
Location:
trunk/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/ChangeLog

    r62738 r62786  
     12010-07-08  Lucas De Marchi  <lucas.demarchi@profusion.mobi>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [EFL] Flush backing store when going to new page.
     6        Call client method to flush backing store when going to a new page. This
     7        is the notification that data related to current page should be dropped,
     8        since a new page is being loaded.
     9        https://bugs.webkit.org/show_bug.cgi?id=41008
     10
     11        * efl/WebCoreSupport/FrameLoaderClientEfl.cpp:
     12        (WebCore::FrameLoaderClientEfl::transitionToCommittedForNewPage):
     13
    1142010-07-07  Lucas De Marchi  <lucas.demarchi@profusion.mobi>
    215
  • trunk/WebKit/efl/WebCoreSupport/FrameLoaderClientEfl.cpp

    r62666 r62786  
    891891    ASSERT(m_frame);
    892892    ASSERT(m_view);
     893
    893894    ewk_frame_view_create_for_view(m_frame, m_view);
    894 }
    895 
    896 }
     895
     896    if (m_frame == ewk_view_frame_main_get(m_view))
     897        ewk_view_frame_main_cleared(m_view);
     898}
     899
     900}
Note: See TracChangeset for help on using the changeset viewer.