Changeset 258858 in webkit


Ignore:
Timestamp:
Mar 23, 2020 10:50:08 AM (4 years ago)
Author:
graouts@webkit.org
Message:

DocumentTimeline / CSSTransition objects are leaking on CNN.com
https://bugs.webkit.org/show_bug.cgi?id=208069
<rdar://problem/59680143>

Reviewed by Darin Adler.

Integrating post-commit review feedback from Darin.

Source/WebCore:

  • testing/Internals.cpp:

(WebCore::Internals::animationWithIdExists const):

Source/WTF:

  • wtf/ListHashSet.h:

(WTF::=):

Location:
trunk/Source
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r258857 r258858  
     12020-03-23  Antoine Quint  <graouts@apple.com>
     2
     3        DocumentTimeline / CSSTransition objects are leaking on CNN.com
     4        https://bugs.webkit.org/show_bug.cgi?id=208069
     5        <rdar://problem/59680143>
     6
     7        Reviewed by Darin Adler.
     8
     9        Integrating post-commit review feedback from Darin.
     10
     11        * wtf/ListHashSet.h:
     12        (WTF::=):
     13
    1142020-03-23  Michael Catanzaro  <mcatanzaro@gnome.org>
    215
  • trunk/Source/WTF/wtf/ListHashSet.h

    r258826 r258858  
    352352inline ListHashSet<T, U>& ListHashSet<T, U>::operator=(ListHashSet&& other)
    353353{
    354     ListHashSet tmp(WTFMove(other));
    355     swap(tmp);
     354    ListHashSet movedSet(WTFMove(other));
     355    swap(movedSet);
    356356    return *this;
    357357}
  • trunk/Source/WebCore/ChangeLog

    r258850 r258858  
     12020-03-23  Antoine Quint  <graouts@apple.com>
     2
     3        DocumentTimeline / CSSTransition objects are leaking on CNN.com
     4        https://bugs.webkit.org/show_bug.cgi?id=208069
     5        <rdar://problem/59680143>
     6
     7        Reviewed by Darin Adler.
     8
     9        Integrating post-commit review feedback from Darin.
     10
     11        * testing/Internals.cpp:
     12        (WebCore::Internals::animationWithIdExists const):
     13
    1142020-03-23  Chris Dumez  <cdumez@apple.com>
    215
  • trunk/Source/WebCore/testing/Internals.cpp

    r258826 r258858  
    10401040{
    10411041    for (auto* animation : WebAnimation::instances()) {
    1042         if (animation && animation->id() == id)
     1042        if (animation->id() == id)
    10431043            return true;
    10441044    }
Note: See TracChangeset for help on using the changeset viewer.