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

Unified Diff: net/spdy/core/fuzzing/hpack_fuzz_util.h

Issue 2839373002: Implement SPDY_EXPORT and SPDY_EXPORT_PRIVATE macros. (Closed)
Patch Set: Rebase: manually resolve trivial merge conflicts. Created 3 years, 8 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
« no previous file with comments | « net/BUILD.gn ('k') | net/spdy/core/hpack/hpack_constants.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/core/fuzzing/hpack_fuzz_util.h
diff --git a/net/spdy/core/fuzzing/hpack_fuzz_util.h b/net/spdy/core/fuzzing/hpack_fuzz_util.h
index 0a37e340051df9531bf48fd4073b7ebe84fe44a7..f980dcac0e235fc575e1fcc2643121e7ed51eee7 100644
--- a/net/spdy/core/fuzzing/hpack_fuzz_util.h
+++ b/net/spdy/core/fuzzing/hpack_fuzz_util.h
@@ -11,19 +11,19 @@
#include <memory>
#include <vector>
-#include "net/base/net_export.h"
#include "net/spdy/core/hpack/hpack_decoder.h"
#include "net/spdy/core/hpack/hpack_encoder.h"
+#include "net/spdy/platform/api/spdy_export.h"
#include "net/spdy/platform/api/spdy_string.h"
#include "net/spdy/platform/api/spdy_string_piece.h"
namespace net {
-class NET_EXPORT_PRIVATE HpackFuzzUtil {
+class SPDY_EXPORT_PRIVATE HpackFuzzUtil {
public:
// A GeneratorContext holds ordered header names & values which are
// initially seeded and then expanded with dynamically generated data.
- struct NET_EXPORT_PRIVATE GeneratorContext {
+ struct SPDY_EXPORT_PRIVATE GeneratorContext {
GeneratorContext();
~GeneratorContext();
std::vector<SpdyString> names;
@@ -41,7 +41,7 @@ class NET_EXPORT_PRIVATE HpackFuzzUtil {
static size_t SampleExponential(size_t mean, size_t sanity_bound);
// Holds an input SpdyString, and manages an offset into that SpdyString.
- struct NET_EXPORT_PRIVATE Input {
+ struct SPDY_EXPORT_PRIVATE Input {
Input(); // Initializes |offset| to zero.
~Input();
@@ -66,7 +66,7 @@ class NET_EXPORT_PRIVATE HpackFuzzUtil {
// A FuzzerContext holds fuzzer input, as well as each of the decoder and
// encoder stages which fuzzed header blocks are processed through.
- struct NET_EXPORT_PRIVATE FuzzerContext {
+ struct SPDY_EXPORT_PRIVATE FuzzerContext {
FuzzerContext();
~FuzzerContext();
std::unique_ptr<HpackDecoder> first_stage;
« no previous file with comments | « net/BUILD.gn ('k') | net/spdy/core/hpack/hpack_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698