aboutsummaryrefslogtreecommitdiffhomepage
path: root/fuzz/Fuzz.h
diff options
context:
space:
mode:
Diffstat (limited to 'fuzz/Fuzz.h')
-rw-r--r--fuzz/Fuzz.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/fuzz/Fuzz.h b/fuzz/Fuzz.h
index cf5bcb9ead..f5083ef8e6 100644
--- a/fuzz/Fuzz.h
+++ b/fuzz/Fuzz.h
@@ -17,15 +17,13 @@ class Fuzz : SkNoncopyable {
public:
explicit Fuzz(SkData*);
+ uint8_t nextB();
uint32_t nextU();
float nextF();
- // These return a value in [min, max).
- uint32_t nextURange(uint32_t min, uint32_t max);
- float nextFRange(float min, float max);
-
private:
SkAutoTUnref<SkData> fBytes;
+ int fNextByte;
};
struct Fuzzable {