Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1159)

Unified Diff: Source/core/rendering/style/StylePendingImage.h

Issue 899163003: Move rendering/RenderObject to layout/LayoutObject. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/rendering/style/StyleImage.h ('k') | Source/core/rendering/svg/ReferenceFilterBuilder.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/style/StylePendingImage.h
diff --git a/Source/core/rendering/style/StylePendingImage.h b/Source/core/rendering/style/StylePendingImage.h
index 69fa33120a4561719a620157788eb44646ac72fb..2e076869f2c43edcfb2f24d1a8c824d34a6406a5 100644
--- a/Source/core/rendering/style/StylePendingImage.h
+++ b/Source/core/rendering/style/StylePendingImage.h
@@ -51,20 +51,20 @@ public:
CSSCursorImageValue* cssCursorImageValue() const { return m_value->isCursorImageValue() ? toCSSCursorImageValue(m_value) : 0; }
CSSImageSetValue* cssImageSetValue() const { return m_value->isImageSetValue() ? toCSSImageSetValue(m_value) : 0; }
- virtual LayoutSize imageSize(const RenderObject*, float /*multiplier*/) const override { return LayoutSize(); }
+ virtual LayoutSize imageSize(const LayoutObject*, float /*multiplier*/) const override { return LayoutSize(); }
virtual bool imageHasRelativeWidth() const override { return false; }
virtual bool imageHasRelativeHeight() const override { return false; }
- virtual void computeIntrinsicDimensions(const RenderObject*, Length& /* intrinsicWidth */ , Length& /* intrinsicHeight */, FloatSize& /* intrinsicRatio */) override { }
+ virtual void computeIntrinsicDimensions(const LayoutObject*, Length& /* intrinsicWidth */ , Length& /* intrinsicHeight */, FloatSize& /* intrinsicRatio */) override { }
virtual bool usesImageContainerSize() const override { return false; }
- virtual void setContainerSizeForRenderer(const RenderObject*, const IntSize&, float) override { }
- virtual void addClient(RenderObject*) override { }
- virtual void removeClient(RenderObject*) override { }
- virtual PassRefPtr<Image> image(RenderObject*, const IntSize&) const override
+ virtual void setContainerSizeForRenderer(const LayoutObject*, const IntSize&, float) override { }
+ virtual void addClient(LayoutObject*) override { }
+ virtual void removeClient(LayoutObject*) override { }
+ virtual PassRefPtr<Image> image(LayoutObject*, const IntSize&) const override
{
ASSERT_NOT_REACHED();
return nullptr;
}
- virtual bool knownToBeOpaque(const RenderObject*) const override { return false; }
+ virtual bool knownToBeOpaque(const LayoutObject*) const override { return false; }
private:
StylePendingImage(CSSValue* value)
« no previous file with comments | « Source/core/rendering/style/StyleImage.h ('k') | Source/core/rendering/svg/ReferenceFilterBuilder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698