| Index: core/fpdfdoc/cpdf_filespec_unittest.cpp
|
| diff --git a/core/fpdfdoc/cpdf_filespec_unittest.cpp b/core/fpdfdoc/cpdf_filespec_unittest.cpp
|
| index 01989ee0bd90a7178656db5d96117195f4b53dd9..72b073510b4d6099a1f069a6bdf0bf9381bf47c8 100644
|
| --- a/core/fpdfdoc/cpdf_filespec_unittest.cpp
|
| +++ b/core/fpdfdoc/cpdf_filespec_unittest.cpp
|
| @@ -11,6 +11,13 @@
|
| #include "core/fpdfdoc/cpdf_filespec.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| #include "testing/test_support.h"
|
| +
|
| +namespace {
|
| +
|
| +using ScopedObj = std::unique_ptr<CPDF_Object, ReleaseDeleter<CPDF_Object>>;
|
| +using ScopedDict =
|
| + std::unique_ptr<CPDF_Dictionary, ReleaseDeleter<CPDF_Dictionary>>;
|
| +}
|
|
|
| TEST(cpdf_filespec, EncodeDecodeFileName) {
|
| std::vector<pdfium::NullTermWstrFuncTestData> test_data = {
|
| @@ -67,7 +74,7 @@
|
| L"/docs/test.pdf"
|
| #endif
|
| };
|
| - std::unique_ptr<CPDF_Object> str_obj(new CPDF_String(test_data.input));
|
| + ScopedObj str_obj(new CPDF_String(test_data.input));
|
| CPDF_FileSpec file_spec(str_obj.get());
|
| CFX_WideString file_name;
|
| EXPECT_TRUE(file_spec.GetFileName(&file_name));
|
| @@ -98,7 +105,7 @@
|
| };
|
| // Keyword fields in reverse order of precedence to retrieve the file name.
|
| const char* const keywords[5] = {"Unix", "Mac", "DOS", "F", "UF"};
|
| - std::unique_ptr<CPDF_Dictionary> dict_obj(new CPDF_Dictionary());
|
| + ScopedDict dict_obj(new CPDF_Dictionary());
|
| CPDF_FileSpec file_spec(dict_obj.get());
|
| CFX_WideString file_name;
|
| for (int i = 0; i < 5; ++i) {
|
| @@ -115,7 +122,7 @@
|
| }
|
| {
|
| // Invalid object.
|
| - std::unique_ptr<CPDF_Object> name_obj(new CPDF_Name("test.pdf"));
|
| + ScopedObj name_obj(new CPDF_Name("test.pdf"));
|
| CPDF_FileSpec file_spec(name_obj.get());
|
| CFX_WideString file_name;
|
| EXPECT_FALSE(file_spec.GetFileName(&file_name));
|
| @@ -136,7 +143,7 @@
|
| #endif
|
| };
|
| // String object.
|
| - std::unique_ptr<CPDF_Object> str_obj(new CPDF_String(L"babababa"));
|
| + ScopedObj str_obj(new CPDF_String(L"babababa"));
|
| CPDF_FileSpec file_spec1(str_obj.get());
|
| file_spec1.SetFileName(test_data.input);
|
| // Check internal object value.
|
| @@ -148,7 +155,7 @@
|
| EXPECT_TRUE(file_name == test_data.input);
|
|
|
| // Dictionary object.
|
| - std::unique_ptr<CPDF_Dictionary> dict_obj(new CPDF_Dictionary());
|
| + ScopedDict dict_obj(new CPDF_Dictionary());
|
| CPDF_FileSpec file_spec2(dict_obj.get());
|
| file_spec2.SetFileName(test_data.input);
|
| // Check internal object value.
|
|
|