Changeset 65060 in webkit


Ignore:
Timestamp:
Aug 10, 2010 2:05:22 AM (14 years ago)
Author:
hamaji@chromium.org
Message:

2010-08-10 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r64988.
http://trac.webkit.org/changeset/64988
https://bugs.webkit.org/show_bug.cgi?id=43775

"It seems to break chromium's ui_tests" (Requested by hamaji
on #webkit).

  • public/WebFrameClient.h:
  • src/FrameLoaderClientImpl.cpp: (WebKit::FrameLoaderClientImpl::detachedFromParent3):
Location:
trunk/WebKit/chromium
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/chromium/ChangeLog

    r65057 r65060  
     12010-08-10  Sheriff Bot  <webkit.review.bot@gmail.com>
     2
     3        Unreviewed, rolling out r64988.
     4        http://trac.webkit.org/changeset/64988
     5        https://bugs.webkit.org/show_bug.cgi?id=43775
     6
     7        "It seems to break chromium's ui_tests" (Requested by hamaji
     8        on #webkit).
     9
     10        * public/WebFrameClient.h:
     11        * src/FrameLoaderClientImpl.cpp:
     12        (WebKit::FrameLoaderClientImpl::detachedFromParent3):
     13
    1142010-08-10  Yury Semikhatsky  <yurys@chromium.org>
    215
  • trunk/WebKit/chromium/public/WebFrameClient.h

    r64988 r65060  
    9191    // General notifications -----------------------------------------------
    9292
    93     // This frame has been detached from the view.
    94     //
    95     // FIXME: Do not use this in new code. Currently this is used by code in
    96     // Chromium that errantly caches WebKit objects.
    97     virtual void frameDetached(WebFrame*) { }
    98 
    9993    // This frame is about to be closed.
    10094    virtual void willClose(WebFrame*) { }
  • trunk/WebKit/chromium/src/FrameLoaderClientImpl.cpp

    r64988 r65060  
    247247    // or crashes.
    248248    m_webFrame->frame()->script()->proxy()->clearForClose();
    249 
    250     // Alert the client that the frame is being detached. This is the last
    251     // chance we have to communicate with the client.
    252     m_webFrame->client()->frameDetached(m_webFrame);
    253 
     249   
    254250    // Stop communicating with the WebFrameClient at this point since we are no
    255251    // longer associated with the Page.
Note: See TracChangeset for help on using the changeset viewer.