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

Unified Diff: tools/CopyTilesRenderer.h

Issue 806653007: Fix up all the easy virtual ... SK_OVERRIDE cases. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 5 years, 11 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 | « tests/skia_test.cpp ('k') | tools/PictureRenderer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/CopyTilesRenderer.h
diff --git a/tools/CopyTilesRenderer.h b/tools/CopyTilesRenderer.h
index 92996bbea84386929057e33dd3535276c9736493..507e0fd2d4d4a2176dfe6a9c9b6b718420eb4952 100644
--- a/tools/CopyTilesRenderer.h
+++ b/tools/CopyTilesRenderer.h
@@ -38,9 +38,9 @@ namespace sk_tools {
* Similar to TiledPictureRenderer, this will draw a PNG for each tile. However, the
* numbering (and actual tiles) will be different.
*/
- virtual bool render(SkBitmap** out) SK_OVERRIDE;
+ bool render(SkBitmap** out) SK_OVERRIDE;
- virtual bool supportsTimingIndividualTiles() SK_OVERRIDE { return false; }
+ bool supportsTimingIndividualTiles() SK_OVERRIDE { return false; }
private:
int fXTilesPerLargeTile;
@@ -49,7 +49,7 @@ namespace sk_tools {
int fLargeTileWidth;
int fLargeTileHeight;
- virtual SkString getConfigNameInternal() SK_OVERRIDE;
+ SkString getConfigNameInternal() SK_OVERRIDE;
typedef TiledPictureRenderer INHERITED;
};
« no previous file with comments | « tests/skia_test.cpp ('k') | tools/PictureRenderer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698