Index: src/utils/SkMD5.h |
diff --git a/src/utils/SkMD5.h b/src/utils/SkMD5.h |
index 4f504782b6b8734c7ab16c442e5640e8be542f0a..889338bec0b21bf3773075917c0543505e919992 100644 |
--- a/src/utils/SkMD5.h |
+++ b/src/utils/SkMD5.h |
@@ -24,12 +24,12 @@ public: |
/** Processes input, adding it to the digest. |
* Note that this treats the buffer as a series of uint8_t values. |
*/ |
- virtual bool write(const void* buffer, size_t size) SK_OVERRIDE { |
+ bool write(const void* buffer, size_t size) SK_OVERRIDE { |
this->update(reinterpret_cast<const uint8_t*>(buffer), size); |
return true; |
} |
- virtual size_t bytesWritten() const SK_OVERRIDE { return SkToSizeT(this->byteCount); } |
+ size_t bytesWritten() const SK_OVERRIDE { return SkToSizeT(this->byteCount); } |
/** Processes input, adding it to the digest. Calling this after finish is undefined. */ |
void update(const uint8_t* input, size_t length); |