[webkit-reviews] review granted: [Bug 128510] Add type-safe casts for ContentData subclasses : [Attachment 223660] Patch v1

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun Feb 9 23:51:18 PST 2014


Darin Adler <darin at apple.com> has granted David Kilzer (:ddkilzer)
<ddkilzer at webkit.org>'s request for review:
Bug 128510: Add type-safe casts for ContentData subclasses
https://bugs.webkit.org/show_bug.cgi?id=128510

Attachment 223660: Patch v1
https://bugs.webkit.org/attachment.cgi?id=223660&action=review

------- Additional Comments from Darin Adler <darin at apple.com>
View in context: https://bugs.webkit.org/attachment.cgi?id=223660&action=review


> Source/WebCore/rendering/style/ContentData.h:105
> +inline bool ImageContentData::equals(const ContentData& data) const
> +{
> +    if (!data.isImage())
> +	   return false;
> +    return *toImageContentData(data).image() == *image();
> +}

I think we could move this to the .cpp file, because I think everyone calls it
polymorphically and so nobody really inlines it.

I also think this could read nicely with && rather than early return.

> Source/WebCore/rendering/style/ContentData.h:135
> +inline bool TextContentData::equals(const ContentData& data) const
> +{
> +    if (!data.isText())
> +	   return false;
> +    return toTextContentData(data).text() == text();
> +}

Ditto.

> Source/WebCore/rendering/style/ContentData.h:169
> +inline bool CounterContentData::equals(const ContentData& data) const
> +{
> +    if (!data.isCounter())
> +	   return false;
> +    return *toCounterContentData(data).counter() == *counter();
> +}

Again.

> Source/WebCore/rendering/style/ContentData.h:199
> +inline bool QuoteContentData::equals(const ContentData& data) const
> +{
> +    if (!data.isQuote())
> +	   return false;
> +    return toQuoteContentData(data).quote() == quote();
> +}

Ditto.


More information about the webkit-reviews mailing list