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

Unified Diff: Source/core/rendering/style/StyleFetchedImageSet.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
Index: Source/core/rendering/style/StyleFetchedImageSet.h
diff --git a/Source/core/rendering/style/StyleFetchedImageSet.h b/Source/core/rendering/style/StyleFetchedImageSet.h
index b800bda92f5e318d382c9be3a6f37b04db8b4f43..9be061060ee6282d60c58a0d20a0828ef9db8284 100644
--- a/Source/core/rendering/style/StyleFetchedImageSet.h
+++ b/Source/core/rendering/style/StyleFetchedImageSet.h
@@ -56,20 +56,20 @@ public:
void clearImageSetValue() { m_imageSetValue = 0; }
- virtual bool canRender(const RenderObject&, float multiplier) const override;
+ virtual bool canRender(const LayoutObject&, float multiplier) const override;
virtual bool isLoaded() const override;
virtual bool errorOccurred() const override;
- virtual LayoutSize imageSize(const RenderObject*, float multiplier) const override;
+ virtual LayoutSize imageSize(const LayoutObject*, float multiplier) const override;
virtual bool imageHasRelativeWidth() const override;
virtual bool imageHasRelativeHeight() const override;
- 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;
- 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;
virtual float imageScaleFactor() const override { return m_imageScaleFactor; }
- virtual bool knownToBeOpaque(const RenderObject*) const override;
+ virtual bool knownToBeOpaque(const LayoutObject*) const override;
virtual ImageResource* cachedImage() const override { return m_bestFitImage.get(); }
private:
« no previous file with comments | « Source/core/rendering/style/StyleFetchedImage.cpp ('k') | Source/core/rendering/style/StyleFetchedImageSet.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698