summaryrefslogtreecommitdiffstats
path: root/skia
diff options
context:
space:
mode:
authorgunsch <gunsch@chromium.org>2015-01-05 14:59:50 -0800
committerCommit bot <commit-bot@chromium.org>2015-01-05 23:00:57 +0000
commitffedd1e87bcfca0c50c75f8ae776a071f3075634 (patch)
tree4a3c3a2fd627c3302f3738e1c2b3e2665c4ed25b /skia
parente181c8d2de875eb6b1ae66cfc0512685fc3db477 (diff)
downloadchromium_src-ffedd1e87bcfca0c50c75f8ae776a071f3075634.zip
chromium_src-ffedd1e87bcfca0c50c75f8ae776a071f3075634.tar.gz
chromium_src-ffedd1e87bcfca0c50c75f8ae776a071f3075634.tar.bz2
virtual/override specifier cleanup in skia/ext/.
These are changes detected by Chromecast not covered by the Linux build. See: https://codereview.chromium.org/831863003 R=thakis@chromium.org BUG=417463 Review URL: https://codereview.chromium.org/836723004 Cr-Commit-Position: refs/heads/master@{#309984}
Diffstat (limited to 'skia')
-rw-r--r--skia/ext/bitmap_platform_device_skia.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/skia/ext/bitmap_platform_device_skia.h b/skia/ext/bitmap_platform_device_skia.h
index 90a2a9a..6a8fe7d 100644
--- a/skia/ext/bitmap_platform_device_skia.h
+++ b/skia/ext/bitmap_platform_device_skia.h
@@ -35,13 +35,12 @@ class BitmapPlatformDevice : public SkBitmapDevice, public PlatformDevice {
// we ever have to share state between some native drawing UI and Skia, like
// the Windows and Mac versions of this class do.
explicit BitmapPlatformDevice(const SkBitmap& other);
- virtual ~BitmapPlatformDevice();
+ ~BitmapPlatformDevice() override;
- virtual PlatformSurface BeginPlatformPaint() override;
+ PlatformSurface BeginPlatformPaint() override;
protected:
- virtual SkBaseDevice* onCreateCompatibleDevice(const CreateInfo& info)
- override;
+ SkBaseDevice* onCreateCompatibleDevice(const CreateInfo& info) override;
private:
DISALLOW_COPY_AND_ASSIGN(BitmapPlatformDevice);