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

Unified Diff: test/fuzzer/wasm-section-fuzzers.cc

Issue 2344143003: Moved zones and zone related stuff in its own directory. (Closed)
Patch Set: Renamed defines to match new file locations Created 4 years, 3 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: test/fuzzer/wasm-section-fuzzers.cc
diff --git a/test/fuzzer/wasm-section-fuzzers.cc b/test/fuzzer/wasm-section-fuzzers.cc
index 6d1c2a47b51a6fcd00a5bd1afbc43b39a49848ae..7e48395297451b56e64cf60d14a1b050b0440fa0 100644
--- a/test/fuzzer/wasm-section-fuzzers.cc
+++ b/test/fuzzer/wasm-section-fuzzers.cc
@@ -8,7 +8,8 @@
#include "src/isolate.h"
#include "src/wasm/encoder.h"
#include "src/wasm/wasm-module.h"
-#include "src/zone.h"
+#include "src/zone/accounting-allocator.h"
+#include "src/zone/zone.h"
#include "test/common/wasm/wasm-module-runner.h"
#include "test/fuzzer/fuzzer-support.h"
@@ -31,7 +32,7 @@ int fuzz_wasm_section(WasmSection::Code section, const uint8_t* data,
v8::Context::Scope context_scope(support->GetContext());
v8::TryCatch try_catch(isolate);
- v8::base::AccountingAllocator allocator;
+ v8::internal::AccountingAllocator allocator;
v8::internal::Zone zone(&allocator);
ZoneBuffer buffer(&zone);

Powered by Google App Engine
This is Rietveld 408576698