Changeset 83731 in webkit


Ignore:
Timestamp:
Apr 13, 2011 7:26:22 AM (13 years ago)
Author:
caseq@chromium.org
Message:

2011-04-13 Andrey Kosyakov <caseq@chromium.org>

Unreviewed. Fix chromium clang build problem:
ApplyPropertyExpandingSuppressValue::applyValue() shadows a virtual method
with a different signature in base class instead of overriding it.

  • css/CSSStyleApplyProperty.cpp: (WebCore::ApplyPropertyExpandingSuppressValue::applyValue):
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r83729 r83731  
     12011-04-13  Andrey Kosyakov  <caseq@chromium.org>
     2
     3        Unreviewed. Fix chromium clang build problem:
     4        ApplyPropertyExpandingSuppressValue::applyValue() shadows a virtual method
     5        with a different signature in base class instead of overriding it.
     6
     7        * css/CSSStyleApplyProperty.cpp:
     8        (WebCore::ApplyPropertyExpandingSuppressValue::applyValue):
     9
    1102011-04-13  Kinuko Yasuda  <kinuko@chromium.org>
    211
  • trunk/Source/WebCore/css/CSSStyleApplyProperty.cpp

    r83700 r83731  
    7676        : ApplyPropertyExpanding(one, two, three, four) {}
    7777
    78     virtual void applyValue(CSSStyleSelector*, CSSValue*)
     78    virtual void applyValue(CSSStyleSelector*, CSSValue*) const
    7979    {
    8080        ASSERT_NOT_REACHED();
Note: See TracChangeset for help on using the changeset viewer.