Changeset 62429 in webkit


Ignore:
Timestamp:
Jul 2, 2010 8:53:13 PM (14 years ago)
Author:
tonyg@chromium.org
Message:

2010-07-02 Tony Gentilcore <tonyg@chromium.org>

Reviewed by Darin Adler.

Performance::disconnectFrame() needs to disconnect its children
https://bugs.webkit.org/show_bug.cgi?id=41533

No new tests because no new functionality.

  • page/Performance.cpp: (WebCore::Performance::disconnectFrame):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r62427 r62429  
     12010-07-02  Tony Gentilcore  <tonyg@chromium.org>
     2
     3        Reviewed by Darin Adler.
     4
     5        Performance::disconnectFrame() needs to disconnect its children
     6        https://bugs.webkit.org/show_bug.cgi?id=41533
     7
     8        No new tests because no new functionality.
     9
     10        * page/Performance.cpp:
     11        (WebCore::Performance::disconnectFrame):
     12
    1132010-07-02  Luiz Agostini  <luiz.agostini@openbossa.org>
    214
  • trunk/WebCore/page/Performance.cpp

    r62357 r62429  
    5353void Performance::disconnectFrame()
    5454{
     55    if (m_navigation) {
     56        m_navigation->disconnectFrame();
     57        m_navigation = 0;
     58    }
     59    if (m_timing) {
     60        m_timing->disconnectFrame();
     61        m_timing = 0;
     62    }
    5563    m_frame = 0;
    5664}
Note: See TracChangeset for help on using the changeset viewer.