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

Unified Diff: include/gpu/GrTexture.h

Issue 1037793002: C++11 override should now be supported by all of {bots,Chrome,Android,Mozilla} (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: git cl web Created 5 years, 9 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 | « include/gpu/GrRenderTarget.h ('k') | include/gpu/SkGrPixelRef.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/gpu/GrTexture.h
diff --git a/include/gpu/GrTexture.h b/include/gpu/GrTexture.h
index ccf958098a65b99754d8bd5e4d3cde80b5104ba8..d565f2f9a7353faf9ec2839fc2e43c0f754ad964 100644
--- a/include/gpu/GrTexture.h
+++ b/include/gpu/GrTexture.h
@@ -18,8 +18,8 @@ class GrTexturePriv;
class GrTexture : virtual public GrSurface {
public:
- GrTexture* asTexture() SK_OVERRIDE { return this; }
- const GrTexture* asTexture() const SK_OVERRIDE { return this; }
+ GrTexture* asTexture() override { return this; }
+ const GrTexture* asTexture() const override { return this; }
/**
* Return the native ID or handle to the texture, depending on the
@@ -50,7 +50,7 @@ protected:
void validateDesc() const;
private:
- size_t onGpuMemorySize() const SK_OVERRIDE;
+ size_t onGpuMemorySize() const override;
void dirtyMipMaps(bool mipMapsDirty);
enum MipMapsStatus {
« no previous file with comments | « include/gpu/GrRenderTarget.h ('k') | include/gpu/SkGrPixelRef.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698