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

Unified Diff: third_party/WebKit/Source/platform/testing/FuzzedDataProvider.h

Issue 2250263003: Move FuzzedDataProvider to //base and expose to blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move FuzzedDataProvider from platform to platform/testing (trybots previous) Created 4 years, 4 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: third_party/WebKit/Source/platform/testing/FuzzedDataProvider.h
diff --git a/third_party/WebKit/Source/platform/testing/FuzzedDataProvider.h b/third_party/WebKit/Source/platform/testing/FuzzedDataProvider.h
new file mode 100644
index 0000000000000000000000000000000000000000..92b013c3875a086d9e0cc30d97b6d6a36e682c7f
--- /dev/null
+++ b/third_party/WebKit/Source/platform/testing/FuzzedDataProvider.h
@@ -0,0 +1,40 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef FuzzedDataProvider_h
+#define FuzzedDataProvider_h
+
+#include "base/fuzzed_data_provider.h"
+#include "platform/PlatformExport.h"
+#include "wtf/Noncopyable.h"
+#include "wtf/text/CString.h"
+
+namespace blink {
+
+// This class simply wraps //base/fuzzed_data_provider and vends Blink friendly
+// types.
+class PLATFORM_EXPORT FuzzedDataProvider {
+ WTF_MAKE_NONCOPYABLE(FuzzedDataProvider);
+
+public:
+ FuzzedDataProvider(const uint8_t* bytes, size_t);
esprehn 2016/08/17 20:42:14 var name for the size_t
Charlie Harrison 2016/08/17 21:22:14 presubmit yells at me for "size" name, so I went w
+
+ // Returns a string with length between minBytes and maxBytes. If the
+ // length is greater than the length of the remaining data this is
+ // equivalent to ConsumeRemainingBytes().
+ CString ConsumeBytesInRange(uint32_t minBytes, uint32_t maxBytes);
+
+ // Returns a String containing all remaining bytes of the input data.
+ CString ConsumeRemainingBytes();
+
+ // Returns a bool, or false when no data remains.
+ bool ConsumeBool();
+
+private:
+ base::FuzzedDataProvider m_provider;
+};
+
+} // namespace blink
+
+#endif // FuzzedDataProvider_h

Powered by Google App Engine
This is Rietveld 408576698