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

Unified Diff: Source/core/svg/graphics/SVGImage.h

Issue 25627006: Generalize ImageForContainer (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 2 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/svg/graphics/SVGImage.h
diff --git a/Source/core/svg/graphics/SVGImage.h b/Source/core/svg/graphics/SVGImage.h
index b75dd70e29e7640c280a63b9b1c680dac7d2ace0..de406f72c2e5b1f5a49adbddbfb2176b430b995e 100644
--- a/Source/core/svg/graphics/SVGImage.h
+++ b/Source/core/svg/graphics/SVGImage.h
@@ -67,7 +67,7 @@ public:
private:
friend class AccessibilityRenderObject;
friend class SVGImageChromeClient;
- friend class SVGImageForContainer;
+ friend class ImageForContainer;
virtual ~SVGImage();
@@ -93,9 +93,9 @@ private:
SVGImage(ImageObserver*);
virtual void draw(GraphicsContext*, const FloatRect& fromRect, const FloatRect& toRect, CompositeOperator, BlendMode) OVERRIDE;
- void drawForContainer(GraphicsContext*, const FloatSize, float, const FloatRect&, const FloatRect&, CompositeOperator, BlendMode);
- void drawPatternForContainer(GraphicsContext*, const FloatSize, float, const FloatRect&, const FloatSize&, const FloatPoint&,
- CompositeOperator, const FloatRect&, BlendMode);
+ virtual void drawForContainer(GraphicsContext*, const FloatSize, float, const FloatRect&, const FloatRect&, CompositeOperator, BlendMode) OVERRIDE;
+ virtual void drawPatternForContainer(GraphicsContext*, const FloatSize, float, const FloatRect&, const FloatSize&, const FloatPoint&,
+ CompositeOperator, const FloatRect&, BlendMode) OVERRIDE;
OwnPtr<SVGImageChromeClient> m_chromeClient;
OwnPtr<Page> m_page;

Powered by Google App Engine
This is Rietveld 408576698