summaryrefslogtreecommitdiff
path: root/xfa/fxfa/app/xfa_ffapp_unittest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'xfa/fxfa/app/xfa_ffapp_unittest.cpp')
-rw-r--r--xfa/fxfa/app/xfa_ffapp_unittest.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/xfa/fxfa/app/xfa_ffapp_unittest.cpp b/xfa/fxfa/app/xfa_ffapp_unittest.cpp
index 10c0545fbb..b35780d218 100644
--- a/xfa/fxfa/app/xfa_ffapp_unittest.cpp
+++ b/xfa/fxfa/app/xfa_ffapp_unittest.cpp
@@ -46,11 +46,11 @@ TEST(CXFAFileRead, NormalStreams) {
// 16 chars total.
stream1->InitStream(reinterpret_cast<const uint8_t*>("one t"), 5,
- new CPDF_Dictionary());
+ pdfium::MakeUnique<CPDF_Dictionary>());
stream2->InitStream(reinterpret_cast<const uint8_t*>("wo "), 3,
- new CPDF_Dictionary());
+ pdfium::MakeUnique<CPDF_Dictionary>());
stream3->InitStream(reinterpret_cast<const uint8_t*>("three!!!"), 8,
- new CPDF_Dictionary());
+ pdfium::MakeUnique<CPDF_Dictionary>());
streams.push_back(stream1.get());
streams.push_back(stream2.get());