Index: base/security_unittest.cc |
diff --git a/base/security_unittest.cc b/base/security_unittest.cc |
index 11e871b6b3218197c25083cebaae0030971c1c34..5db18fdfe457ad132092e7cdcb188c12d6ead3b0 100644 |
--- a/base/security_unittest.cc |
+++ b/base/security_unittest.cc |
@@ -95,7 +95,7 @@ TEST(SecurityTest, ALLOC_TEST(MemoryAllocationRestrictionsNew)) { |
TEST(SecurityTest, ALLOC_TEST(MemoryAllocationRestrictionsNewArray)) { |
if (!IsTcMallocBypassed()) { |
- scoped_array<char> ptr(new (nothrow) char[kTooBigAllocSize]); |
+ scoped_ptr<char[]> ptr(new (nothrow) char[kTooBigAllocSize]); |
ASSERT_TRUE(ptr == NULL); |
} |
} |