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

Side by Side 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: ... also remove PLATFORM_EXPORT 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef FuzzedDataProvider_h
6 #define FuzzedDataProvider_h
7
8 #include "base/test/fuzzed_data_provider.h"
9 #include "wtf/Noncopyable.h"
10 #include "wtf/text/CString.h"
11
12 namespace blink {
13
14 // This class simply wraps //base/test/fuzzed_data_provider and vends Blink
15 // friendly types.
16 class FuzzedDataProvider {
17 WTF_MAKE_NONCOPYABLE(FuzzedDataProvider);
18
19 public:
20 FuzzedDataProvider(const uint8_t* bytes, size_t numBytes);
21
22 // Returns a string with length between minBytes and maxBytes. If the
23 // length is greater than the length of the remaining data this is
24 // equivalent to ConsumeRemainingBytes().
25 CString ConsumeBytesInRange(uint32_t minBytes, uint32_t maxBytes);
26
27 // Returns a String containing all remaining bytes of the input data.
28 CString ConsumeRemainingBytes();
29
30 // Returns a bool, or false when no data remains.
31 bool ConsumeBool();
32
33 private:
34 base::FuzzedDataProvider m_provider;
35 };
36
37 } // namespace blink
38
39 #endif // FuzzedDataProvider_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698