summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/Source/core/layout/LayoutImageResourceStyleImage.h
diff options
context:
space:
mode:
authordsinclair@chromium.org <dsinclair@chromium.org>2015-03-18 20:28:02 +0000
committerdsinclair@chromium.org <dsinclair@chromium.org>2015-03-18 20:28:02 +0000
commit09c64d5fc0ce3693466937f4f08696843e9d3d31 (patch)
tree39894ba5a6bf14411d610cb7f0bb9847a5933ea5 /third_party/WebKit/Source/core/layout/LayoutImageResourceStyleImage.h
parent580acbe42364dabd72c1cbe814606679f368a164 (diff)
downloadchromium_src-09c64d5fc0ce3693466937f4f08696843e9d3d31.zip
chromium_src-09c64d5fc0ce3693466937f4f08696843e9d3d31.tar.gz
chromium_src-09c64d5fc0ce3693466937f4f08696843e9d3d31.tar.bz2
Update Renderer to LayoutObject in ImageResource.
This cleanups the methods in ImageResource that reference Renderer and converts them over to LayoutObject. The CL also updates any subclasses as needed. BUG=462960 TBR=dmazzoni@chromium.org Review URL: https://codereview.chromium.org/1017113002 git-svn-id: svn://svn.chromium.org/blink/trunk@192117 bbb929c8-8fbe-4397-9dbb-9b2b20218538
Diffstat (limited to 'third_party/WebKit/Source/core/layout/LayoutImageResourceStyleImage.h')
-rw-r--r--third_party/WebKit/Source/core/layout/LayoutImageResourceStyleImage.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/WebKit/Source/core/layout/LayoutImageResourceStyleImage.h b/third_party/WebKit/Source/core/layout/LayoutImageResourceStyleImage.h
index 82e45c6..772eb7e 100644
--- a/third_party/WebKit/Source/core/layout/LayoutImageResourceStyleImage.h
+++ b/third_party/WebKit/Source/core/layout/LayoutImageResourceStyleImage.h
@@ -49,7 +49,7 @@ public:
virtual PassRefPtr<Image> image(int width = 0, int height = 0) const override;
virtual bool errorOccurred() const override { return m_styleImage->errorOccurred(); }
- virtual void setContainerSizeForRenderer(const IntSize&) override;
+ virtual void setContainerSizeForLayoutObject(const IntSize&) override;
virtual bool imageHasRelativeWidth() const override { return m_styleImage->imageHasRelativeWidth(); }
virtual bool imageHasRelativeHeight() const override { return m_styleImage->imageHasRelativeHeight(); }