summaryrefslogtreecommitdiff
path: root/core/fpdfdoc/fpdf_tagged.h
diff options
context:
space:
mode:
authortsepez <tsepez@chromium.org>2016-11-02 15:17:29 -0700
committerCommit bot <commit-bot@chromium.org>2016-11-02 15:17:30 -0700
commit12f3e4a58f05850b93af35619cb04f0231d86acc (patch)
tree9851d8e46e5c168f5d148864caa2eebf814529dd /core/fpdfdoc/fpdf_tagged.h
parent3b3ce1a242f8445848d3f23d6c35ba01d7c645f4 (diff)
downloadpdfium-12f3e4a58f05850b93af35619cb04f0231d86acc.tar.xz
Remove FX_BOOL from core
Review-Url: https://codereview.chromium.org/2477443002
Diffstat (limited to 'core/fpdfdoc/fpdf_tagged.h')
-rw-r--r--core/fpdfdoc/fpdf_tagged.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/core/fpdfdoc/fpdf_tagged.h b/core/fpdfdoc/fpdf_tagged.h
index da382579ae..716e626743 100644
--- a/core/fpdfdoc/fpdf_tagged.h
+++ b/core/fpdfdoc/fpdf_tagged.h
@@ -62,31 +62,31 @@ class IPDF_StructElement {
virtual CPDF_Object* GetAttr(const CFX_ByteStringC& owner,
const CFX_ByteStringC& name,
- FX_BOOL bInheritable = FALSE,
+ bool bInheritable = false,
FX_FLOAT fLevel = 0.0F) = 0;
virtual CFX_ByteString GetName(const CFX_ByteStringC& owner,
const CFX_ByteStringC& name,
const CFX_ByteStringC& default_value,
- FX_BOOL bInheritable = FALSE,
+ bool bInheritable = false,
int subindex = -1) = 0;
virtual FX_ARGB GetColor(const CFX_ByteStringC& owner,
const CFX_ByteStringC& name,
FX_ARGB default_value,
- FX_BOOL bInheritable = FALSE,
+ bool bInheritable = false,
int subindex = -1) = 0;
virtual FX_FLOAT GetNumber(const CFX_ByteStringC& owner,
const CFX_ByteStringC& name,
FX_FLOAT default_value,
- FX_BOOL bInheritable = FALSE,
+ bool bInheritable = false,
int subindex = -1) = 0;
virtual int GetInteger(const CFX_ByteStringC& owner,
const CFX_ByteStringC& name,
int default_value,
- FX_BOOL bInheritable = FALSE,
+ bool bInheritable = false,
int subindex = -1) = 0;
};