Changeset 60590 in webkit


Ignore:
Timestamp:
Jun 2, 2010 7:00:31 PM (14 years ago)
Author:
pkasting@chromium.org
Message:

Unreviewed, emergency fix for test crashes (verbal r+ beforehand from
John Gregg).

Temporarily make notificationObjectDestroyed() a no-op to avoid an
ASSERT failure.

https://bugs.webkit.org/show_bug.cgi?id=40097

  • src/NotificationPresenterImpl.cpp:

(WebKit::NotificationPresenterImpl::notificationObjectDestroyed):

Location:
trunk/WebKit/chromium
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/chromium/ChangeLog

    r60543 r60590  
     12010-06-02  Peter Kasting  <pkasting@google.com>
     2
     3        Unreviewed, emergency fix for test crashes (verbal r+ beforehand from
     4        John Gregg).
     5
     6        Temporarily make notificationObjectDestroyed() a no-op to avoid an
     7        ASSERT failure.
     8
     9        https://bugs.webkit.org/show_bug.cgi?id=40097
     10
     11        * src/NotificationPresenterImpl.cpp:
     12        (WebKit::NotificationPresenterImpl::notificationObjectDestroyed):
     13
    1142010-06-02  Sterling Swigart  <sswigart@google.com>
    215
  • trunk/WebKit/chromium/src/NotificationPresenterImpl.cpp

    r57026 r60590  
    8989void NotificationPresenterImpl::notificationObjectDestroyed(Notification* notification)
    9090{
    91     m_presenter->objectDestroyed(PassRefPtr<Notification>(notification));
     91    // TODO(pkasting): We cannot ref an object that's being destroyed.  Either
     92    // this function needs to be called earlier than in ~Notification(), or it
     93    // needs to not ref this object.
     94    //m_presenter->objectDestroyed(PassRefPtr<Notification>(notification));
    9295}
    9396
Note: See TracChangeset for help on using the changeset viewer.