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):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@83731
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+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):
+
2011-04-13 Kinuko Yasuda <kinuko@chromium.org>
Reviewed by David Levin.
ApplyPropertyExpandingSuppressValue(ApplyPropertyBase* one = 0, ApplyPropertyBase* two = 0, ApplyPropertyBase *three = 0, ApplyPropertyBase* four = 0)
: ApplyPropertyExpanding(one, two, three, four) {}
- virtual void applyValue(CSSStyleSelector*, CSSValue*)
+ virtual void applyValue(CSSStyleSelector*, CSSValue*) const
{
ASSERT_NOT_REACHED();
}