diff options
author | Lei Zhang <thestig@chromium.org> | 2018-05-25 16:24:48 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-05-25 16:24:48 +0000 |
commit | 710fa99b0bd26e6761c4481b4b9b6d26d2954c3e (patch) | |
tree | 0c744f3485faa3a91779286dd0f5ef9c0ac26337 /fpdfsdk | |
parent | cbf1550e48e300142a53f635daba3c1d8910add9 (diff) | |
download | pdfium-710fa99b0bd26e6761c4481b4b9b6d26d2954c3e.tar.xz |
Mark CPDF_Object pointers in pattern code as const.
Change-Id: Id7bf252ebe25c92d26065d1138a445ebb2f78d0b
Reviewed-on: https://pdfium-review.googlesource.com/32187
Reviewed-by: dsinclair <dsinclair@chromium.org>
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Commit-Queue: Ryan Harrison <rharrison@chromium.org>
Diffstat (limited to 'fpdfsdk')
-rw-r--r-- | fpdfsdk/fpdf_edit_embeddertest.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/fpdfsdk/fpdf_edit_embeddertest.cpp b/fpdfsdk/fpdf_edit_embeddertest.cpp index 2a3a7768ff..d162f16883 100644 --- a/fpdfsdk/fpdf_edit_embeddertest.cpp +++ b/fpdfsdk/fpdf_edit_embeddertest.cpp @@ -32,7 +32,7 @@ class FPDFEditEmbeddertest : public EmbedderTest { return document_; } - void CheckFontDescriptor(CPDF_Dictionary* font_dict, + void CheckFontDescriptor(const CPDF_Dictionary* font_dict, int font_type, bool bold, bool italic, @@ -1003,7 +1003,7 @@ TEST_F(FPDFEditEmbeddertest, LoadSimpleType1Font) { CPDF_Font* typed_font = CPDFFontFromFPDFFont(font.get()); EXPECT_TRUE(typed_font->IsType1Font()); - CPDF_Dictionary* font_dict = typed_font->GetFontDict(); + const CPDF_Dictionary* font_dict = typed_font->GetFontDict(); EXPECT_EQ("Font", font_dict->GetStringFor("Type")); EXPECT_EQ("Type1", font_dict->GetStringFor("Subtype")); EXPECT_EQ("Times New Roman Bold", font_dict->GetStringFor("BaseFont")); @@ -1032,7 +1032,7 @@ TEST_F(FPDFEditEmbeddertest, LoadSimpleTrueTypeFont) { CPDF_Font* typed_font = CPDFFontFromFPDFFont(font.get()); EXPECT_TRUE(typed_font->IsTrueTypeFont()); - CPDF_Dictionary* font_dict = typed_font->GetFontDict(); + const CPDF_Dictionary* font_dict = typed_font->GetFontDict(); EXPECT_EQ("Font", font_dict->GetStringFor("Type")); EXPECT_EQ("TrueType", font_dict->GetStringFor("Subtype")); EXPECT_EQ("Courier New", font_dict->GetStringFor("BaseFont")); @@ -1063,7 +1063,7 @@ TEST_F(FPDFEditEmbeddertest, LoadCIDType0Font) { EXPECT_TRUE(typed_font->IsCIDFont()); // Check font dictionary entries - CPDF_Dictionary* font_dict = typed_font->GetFontDict(); + const CPDF_Dictionary* font_dict = typed_font->GetFontDict(); EXPECT_EQ("Font", font_dict->GetStringFor("Type")); EXPECT_EQ("Type0", font_dict->GetStringFor("Subtype")); EXPECT_EQ("Times New Roman-Identity-H", font_dict->GetStringFor("BaseFont")); @@ -1105,7 +1105,7 @@ TEST_F(FPDFEditEmbeddertest, LoadCIDType2Font) { EXPECT_TRUE(typed_font->IsCIDFont()); // Check font dictionary entries - CPDF_Dictionary* font_dict = typed_font->GetFontDict(); + const CPDF_Dictionary* font_dict = typed_font->GetFontDict(); EXPECT_EQ("Font", font_dict->GetStringFor("Type")); EXPECT_EQ("Type0", font_dict->GetStringFor("Subtype")); EXPECT_EQ("Arial Italic", font_dict->GetStringFor("BaseFont")); |