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

Unified Diff: Source/platform/graphics/UnacceleratedImageBufferSurface.h

Issue 1213003004: Fix virtual/override/final usage in Source/platform/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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/platform/graphics/UnacceleratedImageBufferSurface.h
diff --git a/Source/platform/graphics/UnacceleratedImageBufferSurface.h b/Source/platform/graphics/UnacceleratedImageBufferSurface.h
index 53939615d39f58f32518008ad29002aa4164e9b7..9df62200a3f2d2dd46ac15e216cd22ed152cc855 100644
--- a/Source/platform/graphics/UnacceleratedImageBufferSurface.h
+++ b/Source/platform/graphics/UnacceleratedImageBufferSurface.h
@@ -42,12 +42,12 @@ class PLATFORM_EXPORT UnacceleratedImageBufferSurface : public ImageBufferSurfac
WTF_MAKE_NONCOPYABLE(UnacceleratedImageBufferSurface); WTF_MAKE_FAST_ALLOCATED(UnacceleratedImageBufferSurface);
public:
UnacceleratedImageBufferSurface(const IntSize&, OpacityMode = NonOpaque);
- virtual ~UnacceleratedImageBufferSurface();
+ ~UnacceleratedImageBufferSurface() override;
- virtual SkCanvas* canvas() const override;
- virtual bool isValid() const override;
+ SkCanvas* canvas() const override;
+ bool isValid() const override;
- virtual PassRefPtr<SkImage> newImageSnapshot() const override;
+ PassRefPtr<SkImage> newImageSnapshot() const override;
private:
RefPtr<SkSurface> m_surface;
};
« no previous file with comments | « Source/platform/graphics/StaticBitmapPattern.h ('k') | Source/platform/graphics/filters/DistantLightSource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698