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

Unified Diff: test/unittests/test-utils.h

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/unittests/test-utils.h
diff --git a/test/unittests/test-utils.h b/test/unittests/test-utils.h
index c5788e2478a824d1c63f557a0a82d5949e51c619..92c1f8329427e1c6df49eafd70ace57d88356095 100644
--- a/test/unittests/test-utils.h
+++ b/test/unittests/test-utils.h
@@ -8,7 +8,7 @@
#include "include/v8.h"
#include "src/base/macros.h"
#include "src/base/utils/random-number-generator.h"
-#include "src/zone.h"
+#include "src/zone/zone.h"
marja 2016/09/19 08:05:11 Here you should include the accounting allocator t
heimbuef 2016/09/19 10:47:52 Done.
#include "testing/gtest-support.h"
namespace v8 {
@@ -103,7 +103,7 @@ class TestWithZone : public virtual ::testing::Test {
Zone* zone() { return &zone_; }
private:
- base::AccountingAllocator allocator_;
+ v8::internal::AccountingAllocator allocator_;
Zone zone_;
DISALLOW_COPY_AND_ASSIGN(TestWithZone);
@@ -118,7 +118,7 @@ class TestWithIsolateAndZone : public virtual TestWithIsolate {
Zone* zone() { return &zone_; }
private:
- base::AccountingAllocator allocator_;
+ v8::internal::AccountingAllocator allocator_;
Zone zone_;
DISALLOW_COPY_AND_ASSIGN(TestWithIsolateAndZone);

Powered by Google App Engine
This is Rietveld 408576698