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

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

Issue 640593002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/[css|rendering|clipboard] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased the patch Created 6 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
« no previous file with comments | « Source/core/rendering/style/ContentData.h ('k') | Source/core/rendering/style/StyleFetchedImageSet.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/style/StyleFetchedImage.h
diff --git a/Source/core/rendering/style/StyleFetchedImage.h b/Source/core/rendering/style/StyleFetchedImage.h
index 382aded2930551be9e611d029a9b7413dde2fa63..409bb8c06fac31df876d8cd5e68a3a438047ef73 100644
--- a/Source/core/rendering/style/StyleFetchedImage.h
+++ b/Source/core/rendering/style/StyleFetchedImage.h
@@ -32,30 +32,30 @@ namespace blink {
class ImageResource;
-class StyleFetchedImage FINAL : public StyleImage, private ImageResourceClient {
+class StyleFetchedImage final : public StyleImage, private ImageResourceClient {
WTF_MAKE_FAST_ALLOCATED;
public:
static PassRefPtr<StyleFetchedImage> create(ImageResource* image) { return adoptRef(new StyleFetchedImage(image)); }
virtual ~StyleFetchedImage();
- virtual WrappedImagePtr data() const OVERRIDE { return m_image.get(); }
+ virtual WrappedImagePtr data() const override { return m_image.get(); }
- virtual PassRefPtrWillBeRawPtr<CSSValue> cssValue() const OVERRIDE;
+ virtual PassRefPtrWillBeRawPtr<CSSValue> cssValue() const override;
- virtual bool canRender(const RenderObject&, float multiplier) const OVERRIDE;
- virtual bool isLoaded() const OVERRIDE;
- virtual bool errorOccurred() const OVERRIDE;
- virtual LayoutSize imageSize(const RenderObject*, 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 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 bool knownToBeOpaque(const RenderObject*) const OVERRIDE;
- virtual ImageResource* cachedImage() const OVERRIDE { return m_image.get(); }
+ virtual bool canRender(const RenderObject&, float multiplier) const override;
+ virtual bool isLoaded() const override;
+ virtual bool errorOccurred() const override;
+ virtual LayoutSize imageSize(const RenderObject*, 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 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 bool knownToBeOpaque(const RenderObject*) const override;
+ virtual ImageResource* cachedImage() const override { return m_image.get(); }
private:
explicit StyleFetchedImage(ImageResource*);
« no previous file with comments | « Source/core/rendering/style/ContentData.h ('k') | Source/core/rendering/style/StyleFetchedImageSet.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698