Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2498)

Unified Diff: core/fpdfdoc/tagged_int.h

Issue 2477443002: Remove FX_BOOL from core (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « core/fpdfdoc/fpdf_tagged.h ('k') | core/fpdftext/cpdf_linkextract.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/fpdfdoc/tagged_int.h
diff --git a/core/fpdfdoc/tagged_int.h b/core/fpdfdoc/tagged_int.h
index 14dfaf58b4ae96dcd5c03e73ef14e62547da3a78..43e43f1ed6f7632f4e5efee30fb1f4c2ea2a6c27 100644
--- a/core/fpdfdoc/tagged_int.h
+++ b/core/fpdfdoc/tagged_int.h
@@ -32,8 +32,8 @@ class CPDF_StructTreeImpl final : public IPDF_StructTree {
CPDF_Dictionary* pElement,
std::map<CPDF_Dictionary*, CPDF_StructElementImpl*>& map,
int nLevel = 0);
- FX_BOOL AddTopLevelNode(CPDF_Dictionary* pDict,
- CPDF_StructElementImpl* pElement);
+ bool AddTopLevelNode(CPDF_Dictionary* pDict,
+ CPDF_StructElementImpl* pElement);
protected:
const CPDF_Dictionary* const m_pTreeRoot;
@@ -59,34 +59,34 @@ class CPDF_StructElementImpl final : public IPDF_StructElement {
const CPDF_StructKid& GetKid(int index) const override;
CPDF_Object* GetAttr(const CFX_ByteStringC& owner,
const CFX_ByteStringC& name,
- FX_BOOL bInheritable = FALSE,
+ bool bInheritable = false,
FX_FLOAT fLevel = 0.0F) override;
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) override;
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) override;
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) override;
int GetInteger(const CFX_ByteStringC& owner,
const CFX_ByteStringC& name,
int default_value,
- FX_BOOL bInheritable = FALSE,
+ bool bInheritable = false,
int subindex = -1) override;
void LoadKids(CPDF_Dictionary* pDict);
void LoadKid(uint32_t PageObjNum, CPDF_Object* pObj, CPDF_StructKid* pKid);
CPDF_Object* GetAttr(const CFX_ByteStringC& owner,
const CFX_ByteStringC& name,
- FX_BOOL bInheritable,
+ bool bInheritable,
int subindex);
CPDF_StructElementImpl* Retain();
void Release();
« no previous file with comments | « core/fpdfdoc/fpdf_tagged.h ('k') | core/fpdftext/cpdf_linkextract.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698