aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkValidatingReadBuffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/SkValidatingReadBuffer.h')
-rw-r--r--src/core/SkValidatingReadBuffer.h68
1 files changed, 3 insertions, 65 deletions
diff --git a/src/core/SkValidatingReadBuffer.h b/src/core/SkValidatingReadBuffer.h
index 3203ebac55..ccf66d4528 100644
--- a/src/core/SkValidatingReadBuffer.h
+++ b/src/core/SkValidatingReadBuffer.h
@@ -17,69 +17,7 @@
class SkBitmap;
-class SkValidatingReadBuffer : public SkReadBuffer {
-public:
- SkValidatingReadBuffer(const void* data, size_t size);
- ~SkValidatingReadBuffer() override;
+// DEPRECATED -- just use SkReadBuffer (so we can delete this header)
+typedef SkReadBuffer SkValidatingReadBuffer;
- SkReadBuffer* clone(const void* data, size_t size) const override {
- return new SkValidatingReadBuffer(data, size);
- }
-
- const void* skip(size_t size) override;
-
- // primitives
- bool readBool() override;
- SkColor readColor() override;
- int32_t readInt() override;
- SkScalar readScalar() override;
- uint32_t readUInt() override;
- int32_t read32() override;
-
- // peek
- uint8_t peekByte() override;
-
- // strings -- the caller is responsible for freeing the string contents
- void readString(SkString* string) override;
-
- // common data structures
- SkFlattenable* readFlattenable(SkFlattenable::Type type) override;
- void readColor4f(SkColor4f* color) override;
- void readPoint(SkPoint* point) override;
- void readPoint3(SkPoint3* point) override;
- void readMatrix(SkMatrix* matrix) override;
- void readIRect(SkIRect* rect) override;
- void readRect(SkRect* rect) override;
- void readRRect(SkRRect* rrect) override;
- void readRegion(SkRegion* region) override;
- void readPath(SkPath* path) override;
-
- // binary data and arrays
- bool readByteArray(void* value, size_t size) override;
- bool readColorArray(SkColor* colors, size_t size) override;
- bool readColor4fArray(SkColor4f* colors, size_t size) override;
- bool readIntArray(int32_t* values, size_t size) override;
- bool readPointArray(SkPoint* points, size_t size) override;
- bool readScalarArray(SkScalar* values, size_t size) override;
-
- // helpers to get info about arrays and binary data
- uint32_t getArrayCount() override;
-
- bool validate(bool isValid) override;
- bool isValid() const override;
-
-private:
- bool readArray(void* value, size_t size, size_t elementSize);
-
- void setMemory(const void* data, size_t size);
-
- static bool IsPtrAlign4(const void* ptr) {
- return SkIsAlign4((uintptr_t)ptr);
- }
-
- bool fError;
-
- typedef SkReadBuffer INHERITED;
-};
-
-#endif // SkValidatingReadBuffer_DEFINED
+#endif