| Index: core/fpdfapi/parser/cpdf_document_unittest.cpp | 
| diff --git a/core/fpdfapi/parser/cpdf_document_unittest.cpp b/core/fpdfapi/parser/cpdf_document_unittest.cpp | 
| index 9336626f45989be83afd6f10b4dfd305df8f35f4..ac7c3af12b3e379c87f4292d1b7ea15657285c6f 100644 | 
| --- a/core/fpdfapi/parser/cpdf_document_unittest.cpp | 
| +++ b/core/fpdfapi/parser/cpdf_document_unittest.cpp | 
| @@ -9,6 +9,7 @@ | 
| #include "core/fpdfapi/cpdf_modulemgr.h" | 
| #include "core/fpdfapi/parser/cpdf_array.h" | 
| #include "core/fpdfapi/parser/cpdf_dictionary.h" | 
| +#include "core/fpdfapi/parser/cpdf_linearized.h" | 
| #include "core/fpdfapi/parser/cpdf_parser.h" | 
| #include "core/fxcrt/fx_memory.h" | 
| #include "testing/gtest/include/gtest/gtest.h" | 
| @@ -121,10 +122,12 @@ TEST_F(cpdf_document_test, UseCachedPageObjNumIfHaveNotPagesDict) { | 
| // can be not exists in this case. | 
| // (case, when hint table is used to page check in CPDF_DataAvail). | 
| CPDF_Document document(pdfium::MakeUnique<CPDF_Parser>()); | 
| -  ScopedDictionary dict(new CPDF_Dictionary()); | 
| +  CPDF_Dictionary* dict = new CPDF_Dictionary(); | 
| const int page_count = 100; | 
| dict->SetIntegerFor("N", page_count); | 
| -  document.LoadLinearizedDoc(dict.get()); | 
| +  dict->SetBooleanFor("Linearized", true); | 
| +  auto linearized = CPDF_Linearized::CreateForObject(UniqueObject(dict)); | 
| +  document.LoadLinearizedDoc(linearized.get()); | 
| ASSERT_EQ(page_count, document.GetPageCount()); | 
| CPDF_Object* page_stub = new CPDF_Dictionary(); | 
| const uint32_t obj_num = document.AddIndirectObject(page_stub); | 
|  |