Changeset 212501 in webkit


Ignore:
Timestamp:
Feb 16, 2017 4:56:47 PM (7 years ago)
Author:
matthew_hanson@apple.com
Message:

Merge r212174. rdar://problem/29904368

Location:
branches/safari-603-branch/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/safari-603-branch/Source/WebCore/ChangeLog

    r212500 r212501  
     12017-02-16  Matthew Hanson  <matthew_hanson@apple.com>
     2
     3        Merge r212174. rdar://problem/29904368
     4
     5    2017-02-10  Daniel Bates  <dabates@apple.com>
     6
     7            Attempt to fix the build following <https://trac.webkit.org/changeset/212173>
     8            (https://bugs.webkit.org/show_bug.cgi?id=166774)
     9
     10            * dom/Document.cpp:
     11            (WebCore::Document::detachFromCachedFrame): Use ASSER_UNUSED() instead of ASSERT() since
     12            the parameter cachedFrame is unused in non-debug build.
     13
    1142017-02-16  Matthew Hanson  <matthew_hanson@apple.com>
    215
  • branches/safari-603-branch/Source/WebCore/dom/Document.cpp

    r212500 r212501  
    22242224void Document::detachFromCachedFrame(CachedFrameBase& cachedFrame)
    22252225{
     2226    ASSERT_UNUSED(cachedFrame, cachedFrame.view());
    22262227    ASSERT_WITH_SECURITY_IMPLICATION(cachedFrame.document() == this);
    2227     ASSERT(cachedFrame.view());
    22282228    ASSERT(m_frame == &cachedFrame.view()->frame());
    22292229    ASSERT(m_pageCacheState == Document::InPageCache);
Note: See TracChangeset for help on using the changeset viewer.