summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/skia/src/core/SkPaintOptionsAndroid.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/skia/src/core/SkPaintOptionsAndroid.cpp')
-rw-r--r--chromium/third_party/skia/src/core/SkPaintOptionsAndroid.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/chromium/third_party/skia/src/core/SkPaintOptionsAndroid.cpp b/chromium/third_party/skia/src/core/SkPaintOptionsAndroid.cpp
index f8a65e9d90f..56f1bd1654e 100644
--- a/chromium/third_party/skia/src/core/SkPaintOptionsAndroid.cpp
+++ b/chromium/third_party/skia/src/core/SkPaintOptionsAndroid.cpp
@@ -7,7 +7,8 @@
*/
#include "SkPaintOptionsAndroid.h"
-#include "SkFlattenableBuffers.h"
+#include "SkReadBuffer.h"
+#include "SkWriteBuffer.h"
#include "SkTDict.h"
#include "SkThread.h"
#include <cstring>
@@ -25,13 +26,13 @@ SkLanguage SkLanguage::getParent() const {
return SkLanguage(tag, parentTagLen);
}
-void SkPaintOptionsAndroid::flatten(SkFlattenableWriteBuffer& buffer) const {
+void SkPaintOptionsAndroid::flatten(SkWriteBuffer& buffer) const {
buffer.writeUInt(fFontVariant);
buffer.writeString(fLanguage.getTag().c_str());
buffer.writeBool(fUseFontFallbacks);
}
-void SkPaintOptionsAndroid::unflatten(SkFlattenableReadBuffer& buffer) {
+void SkPaintOptionsAndroid::unflatten(SkReadBuffer& buffer) {
fFontVariant = (FontVariant)buffer.readUInt();
SkString tag;
buffer.readString(&tag);