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

Unified Diff: src/core/SkMD5.h

Issue 1913173003: SkMD5: .update() -> .write() (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2016-04-22 (Friday) 16:17:21 EDT Created 4 years, 8 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
Index: src/core/SkMD5.h
diff --git a/src/core/SkMD5.h b/src/core/SkMD5.h
index a6d9b9f3ebb91ea864ff5e6ab4d356cec2e48ba5..8838d47ac07d04ce224ada019114d496ea29c6e6 100644
--- a/src/core/SkMD5.h
+++ b/src/core/SkMD5.h
@@ -21,9 +21,6 @@ public:
size_t bytesWritten() const final { return SkToSizeT(this->byteCount); }
- /** Alias for write() */
- void update(const uint8_t* b, size_t l) { (void)this->write(b, l); }
-
struct Digest {
uint8_t data[16];
bool operator ==(Digest const& other) const {
« no previous file with comments | « bench/ChecksumBench.cpp ('k') | src/core/SkMD5.cpp » ('j') | src/core/SkMD5.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698