diff options
author | gunsch <gunsch@chromium.org> | 2015-01-05 14:59:50 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-01-05 23:00:57 +0000 |
commit | ffedd1e87bcfca0c50c75f8ae776a071f3075634 (patch) | |
tree | 4a3c3a2fd627c3302f3738e1c2b3e2665c4ed25b /skia/ext | |
parent | e181c8d2de875eb6b1ae66cfc0512685fc3db477 (diff) | |
download | chromium_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/ext')
-rw-r--r-- | skia/ext/bitmap_platform_device_skia.h | 7 |
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); |