Index: base/process_util_unittest.cc |
diff --git a/base/process_util_unittest.cc b/base/process_util_unittest.cc |
index 8d26375fe46b64914fc3170e4262800fba8712b7..183103cce75f2cd35b07d3338a7d3ee32f46abff 100644 |
--- a/base/process_util_unittest.cc |
+++ b/base/process_util_unittest.cc |
@@ -939,15 +939,15 @@ class OutOfMemoryDeathTest : public testing::Test { |
signed_test_size_(std::numeric_limits<ssize_t>::max()) { |
} |
- virtual void SetUp() { |
#if defined(USE_TCMALLOC) |
+ virtual void SetUp() OVERRIDE { |
tc_set_new_mode(1); |
} |
- virtual void TearDown() { |
+ virtual void TearDown() OVERRIDE { |
tc_set_new_mode(0); |
-#endif // defined(USE_TCMALLOC) |
} |
+#endif // defined(USE_TCMALLOC) |
void SetUpInDeathAssert() { |
// Must call EnableTerminationOnOutOfMemory() because that is called from |