Index: core/fpdfapi/parser/cpdf_parser_unittest.cpp |
diff --git a/core/fpdfapi/parser/cpdf_parser_unittest.cpp b/core/fpdfapi/parser/cpdf_parser_unittest.cpp |
index 239332784ea9d10dfca7d91bcedfd7a7dc129bee..7148c54f30d55649cad324ff4a382df7b0a826e4 100644 |
--- a/core/fpdfapi/parser/cpdf_parser_unittest.cpp |
+++ b/core/fpdfapi/parser/cpdf_parser_unittest.cpp |
@@ -115,7 +115,7 @@ TEST(cpdf_parser, LoadCrossRefV4) { |
ASSERT_TRUE( |
parser.InitTestFromBuffer(xref_table, FX_ArraySize(xref_table))); |
- ASSERT_TRUE(parser.LoadCrossRefV4(0, 0, FALSE)); |
+ ASSERT_TRUE(parser.LoadCrossRefV4(0, 0, false)); |
const FX_FILESIZE offsets[] = {0, 17, 81, 0, 331, 409}; |
const uint8_t types[] = {0, 1, 1, 0, 1, 1}; |
for (size_t i = 0; i < FX_ArraySize(offsets); ++i) { |
@@ -140,7 +140,7 @@ TEST(cpdf_parser, LoadCrossRefV4) { |
ASSERT_TRUE( |
parser.InitTestFromBuffer(xref_table, FX_ArraySize(xref_table))); |
- ASSERT_TRUE(parser.LoadCrossRefV4(0, 0, FALSE)); |
+ ASSERT_TRUE(parser.LoadCrossRefV4(0, 0, false)); |
const FX_FILESIZE offsets[] = {0, 0, 0, 25325, 0, 0, 0, |
0, 25518, 25635, 0, 0, 25777}; |
const uint8_t types[] = {0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1}; |
@@ -166,7 +166,7 @@ TEST(cpdf_parser, LoadCrossRefV4) { |
ASSERT_TRUE( |
parser.InitTestFromBuffer(xref_table, FX_ArraySize(xref_table))); |
- ASSERT_TRUE(parser.LoadCrossRefV4(0, 0, FALSE)); |
+ ASSERT_TRUE(parser.LoadCrossRefV4(0, 0, false)); |
const FX_FILESIZE offsets[] = {0, 0, 0, 25325, 0, 0, 0, |
0, 0, 25635, 0, 0, 25777}; |
const uint8_t types[] = {0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1}; |
@@ -191,7 +191,7 @@ TEST(cpdf_parser, LoadCrossRefV4) { |
ASSERT_TRUE( |
parser.InitTestFromBuffer(xref_table, FX_ArraySize(xref_table))); |
- ASSERT_TRUE(parser.LoadCrossRefV4(0, 0, FALSE)); |
+ ASSERT_TRUE(parser.LoadCrossRefV4(0, 0, false)); |
const FX_FILESIZE offsets[] = {0, 23, 0, 0, 0, 45, 179}; |
const uint8_t types[] = {0, 1, 0, 0, 0, 1, 1}; |
for (size_t i = 0; i < FX_ArraySize(offsets); ++i) { |