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

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

Issue 1847543002: Expose a lower bound of malloc'd memory via heap statistics (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: updates Created 4 years, 9 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 78283bff572ae31248503f994f9841a9cdae85ca..9950c5a51dded37341409b79cb9ea5e93f90b270 100644
--- a/test/unittests/test-utils.h
+++ b/test/unittests/test-utils.h
@@ -99,7 +99,7 @@ class TestWithZone : public virtual ::testing::Test {
Zone* zone() { return &zone_; }
private:
- Zone zone_;
+ ZoneForTesting zone_;
DISALLOW_COPY_AND_ASSIGN(TestWithZone);
};
@@ -113,7 +113,7 @@ class TestWithIsolateAndZone : public virtual TestWithIsolate {
Zone* zone() { return &zone_; }
private:
- Zone zone_;
+ ZoneForTesting zone_;
DISALLOW_COPY_AND_ASSIGN(TestWithIsolateAndZone);
};

Powered by Google App Engine
This is Rietveld 408576698