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

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

Issue 868883002: Remove the dependency of Zone on Isolate (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: All platforms Created 5 years, 11 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 511e3574c869ba064c207476ac5e3b679f16a4a4..838b05c880381eaa78d1de6bf1c45e0e53f8d239 100644
--- a/test/unittests/test-utils.h
+++ b/test/unittests/test-utils.h
@@ -92,7 +92,7 @@ class TestWithIsolate : public virtual ::v8::TestWithIsolate {
class TestWithZone : public TestWithIsolate {
public:
- TestWithZone() : zone_(isolate()) {}
+ TestWithZone() : zone_() {}
Michael Starzinger 2015/01/23 14:21:11 nit: Explicit initializer call shouldn't be needed
danno 2015/01/23 14:45:21 Done.
virtual ~TestWithZone();
Zone* zone() { return &zone_; }

Powered by Google App Engine
This is Rietveld 408576698