diff options
author | Lei Zhang <thestig@chromium.org> | 2018-05-09 22:02:32 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-05-09 22:02:32 +0000 |
commit | 7e28208d26764438bef62e051d2e1fed13e1e0ec (patch) | |
tree | 781d3e250a4fd3af3eb16da299b56938b21a7414 /core/fpdfapi/parser/cpdf_object.cpp | |
parent | 52489ee8114cf476342231be610e75b324290920 (diff) | |
download | pdfium-7e28208d26764438bef62e051d2e1fed13e1e0ec.tar.xz |
Add proper const/non-const versions of CPDF_Object methods.
Instead of having const methods that return non-const pointers.
BUG=pdfium:234
Change-Id: I598e9b4f267f702e2e71001cfe3aa3c9e9d8c12f
Reviewed-on: https://pdfium-review.googlesource.com/32182
Commit-Queue: Lei Zhang <thestig@chromium.org>
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Diffstat (limited to 'core/fpdfapi/parser/cpdf_object.cpp')
-rw-r--r-- | core/fpdfapi/parser/cpdf_object.cpp | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/core/fpdfapi/parser/cpdf_object.cpp b/core/fpdfapi/parser/cpdf_object.cpp index 67632a040c..8190d3429f 100644 --- a/core/fpdfapi/parser/cpdf_object.cpp +++ b/core/fpdfapi/parser/cpdf_object.cpp @@ -19,8 +19,12 @@ CPDF_Object::~CPDF_Object() {} -CPDF_Object* CPDF_Object::GetDirect() const { - return const_cast<CPDF_Object*>(this); +CPDF_Object* CPDF_Object::GetDirect() { + return this; +} + +const CPDF_Object* CPDF_Object::GetDirect() const { + return this; } std::unique_ptr<CPDF_Object> CPDF_Object::CloneObjectNonCyclic( @@ -55,7 +59,11 @@ int CPDF_Object::GetInteger() const { return 0; } -CPDF_Dictionary* CPDF_Object::GetDict() const { +CPDF_Dictionary* CPDF_Object::GetDict() { + return nullptr; +} + +const CPDF_Dictionary* CPDF_Object::GetDict() const { return nullptr; } |