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

Unified Diff: src/utils/SkMD5.h

Issue 182733008: Switch the factory chunk in the skps to storing its size in bytes (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Added comment Created 6 years, 10 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 | « src/core/SkStream.cpp ('k') | tools/skpinfo.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/utils/SkMD5.h
===================================================================
--- src/utils/SkMD5.h (revision 13672)
+++ src/utils/SkMD5.h (working copy)
@@ -25,7 +25,7 @@
* Note that this treats the buffer as a series of uint8_t values.
*/
virtual bool write(const void* buffer, size_t size) SK_OVERRIDE {
- update(reinterpret_cast<const uint8_t*>(buffer), size);
+ this->update(reinterpret_cast<const uint8_t*>(buffer), size);
return true;
}
« no previous file with comments | « src/core/SkStream.cpp ('k') | tools/skpinfo.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698