| Index: src/gpu/gl/GrGLPath.h
|
| diff --git a/src/gpu/gl/GrGLPath.h b/src/gpu/gl/GrGLPath.h
|
| index 57a26401ac003b71fc4e8e4c4c3280c921a20e97..f048f8543b1bb0bae549eee30e7585c9e426dbb2 100644
|
| --- a/src/gpu/gl/GrGLPath.h
|
| +++ b/src/gpu/gl/GrGLPath.h
|
| @@ -31,12 +31,12 @@ public:
|
| GrGLuint pathID() const { return fPathID; }
|
|
|
| protected:
|
| - virtual void onRelease() SK_OVERRIDE;
|
| - virtual void onAbandon() SK_OVERRIDE;
|
| + void onRelease() SK_OVERRIDE;
|
| + void onAbandon() SK_OVERRIDE;
|
|
|
| private:
|
| // TODO: Figure out how to get an approximate size of the path in Gpu memory.
|
| - virtual size_t onGpuMemorySize() const SK_OVERRIDE { return 100; }
|
| + size_t onGpuMemorySize() const SK_OVERRIDE { return 100; }
|
|
|
| GrGLuint fPathID;
|
|
|
|
|