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

Unified Diff: src/core/SkWriteBuffer.cpp

Issue 1936103002: Remove unused encodedString API on SkWriteBuffer/SkReadBuffer (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 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
« no previous file with comments | « src/core/SkValidatingReadBuffer.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/core/SkWriteBuffer.cpp
diff --git a/src/core/SkWriteBuffer.cpp b/src/core/SkWriteBuffer.cpp
index 2b35b67702d490aa7e4b7c4df3f53669321d0c96..5c65755e3e7014cce10d17e3a157f56996f29ca5 100644
--- a/src/core/SkWriteBuffer.cpp
+++ b/src/core/SkWriteBuffer.cpp
@@ -74,14 +74,6 @@ void SkWriteBuffer::writeString(const char* value) {
fWriter.writeString(value);
}
-void SkWriteBuffer::writeEncodedString(const void* value, size_t byteLength,
- SkPaint::TextEncoding encoding) {
- fWriter.writeInt(encoding);
- fWriter.writeInt(SkToU32(byteLength));
- fWriter.write(value, byteLength);
-}
-
-
void SkWriteBuffer::writeColor(const SkColor& color) {
fWriter.write32(color);
}
« no previous file with comments | « src/core/SkValidatingReadBuffer.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698