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

Unified Diff: Source/platform/graphics/PicturePattern.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
« no previous file with comments | « Source/platform/graphics/LoggingCanvas.h ('k') | Source/platform/graphics/RecordingImageBufferSurface.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/graphics/PicturePattern.h
diff --git a/Source/platform/graphics/PicturePattern.h b/Source/platform/graphics/PicturePattern.h
index 5bd78cc5dd37b1c2092c992defcb4d46476180aa..e0b74b4a81929b408c6814f5e67ad63fc5a74e3f 100644
--- a/Source/platform/graphics/PicturePattern.h
+++ b/Source/platform/graphics/PicturePattern.h
@@ -13,10 +13,10 @@ class PLATFORM_EXPORT PicturePattern : public Pattern {
public:
static PassRefPtr<PicturePattern> create(PassRefPtr<const SkPicture>, RepeatMode);
- virtual ~PicturePattern();
+ ~PicturePattern() override;
protected:
- virtual PassRefPtr<SkShader> createShader() override;
+ PassRefPtr<SkShader> createShader() override;
private:
PicturePattern(PassRefPtr<const SkPicture>, RepeatMode);
« no previous file with comments | « Source/platform/graphics/LoggingCanvas.h ('k') | Source/platform/graphics/RecordingImageBufferSurface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698