Changeset 212174 in webkit


Ignore:
Timestamp:
Feb 10, 2017 7:09:10 PM (7 years ago)
Author:
dbates@webkit.org
Message:

Attempt to fix the build following <https://trac.webkit.org/changeset/212173>
(https://bugs.webkit.org/show_bug.cgi?id=166774)

  • dom/Document.cpp:

(WebCore::Document::detachFromCachedFrame): Use ASSER_UNUSED() instead of ASSERT() since
the parameter cachedFrame is unused in non-debug build.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r212173 r212174  
     12017-02-10  Daniel Bates  <dabates@apple.com>
     2
     3        Attempt to fix the build following <https://trac.webkit.org/changeset/212173>
     4        (https://bugs.webkit.org/show_bug.cgi?id=166774)
     5
     6        * dom/Document.cpp:
     7        (WebCore::Document::detachFromCachedFrame): Use ASSER_UNUSED() instead of ASSERT() since
     8        the parameter cachedFrame is unused in non-debug build.
     9
    1102017-02-10  Daniel Bates  <dabates@apple.com>
    211
  • trunk/Source/WebCore/dom/Document.cpp

    r212173 r212174  
    21922192void Document::detachFromCachedFrame(CachedFrameBase& cachedFrame)
    21932193{
     2194    ASSERT_UNUSED(cachedFrame, cachedFrame.view());
    21942195    ASSERT_WITH_SECURITY_IMPLICATION(cachedFrame.document() == this);
    2195     ASSERT(cachedFrame.view());
    21962196    ASSERT(m_frame == &cachedFrame.view()->frame());
    21972197    ASSERT(m_pageCacheState == Document::InPageCache);
Note: See TracChangeset for help on using the changeset viewer.