summaryrefslogtreecommitdiff
path: root/fpdfsdk/include
diff options
context:
space:
mode:
authorjaepark <jaepark@google.com>2016-08-25 06:40:56 -0700
committerCommit bot <commit-bot@chromium.org>2016-08-25 06:40:56 -0700
commitcae6bdfff7e409312f2f88548be5b30abfa84147 (patch)
treee9b043a8a1c29a1bffb9d87b0aeeb6e3907920d7 /fpdfsdk/include
parent156de02596e91490bf2432686d0d3c91a5c1a26e (diff)
downloadpdfium-cae6bdfff7e409312f2f88548be5b30abfa84147.tar.xz
Remove unused IPDFSDK_AnnotHandler::GetName().
Review-Url: https://codereview.chromium.org/2276953003
Diffstat (limited to 'fpdfsdk/include')
-rw-r--r--fpdfsdk/include/cpdfsdk_bfannothandler.h1
-rw-r--r--fpdfsdk/include/cpdfsdk_xfaannothandler.h1
-rw-r--r--fpdfsdk/include/ipdfsdk_annothandler.h1
3 files changed, 0 insertions, 3 deletions
diff --git a/fpdfsdk/include/cpdfsdk_bfannothandler.h b/fpdfsdk/include/cpdfsdk_bfannothandler.h
index 1fbc13ceee..be7e79279d 100644
--- a/fpdfsdk/include/cpdfsdk_bfannothandler.h
+++ b/fpdfsdk/include/cpdfsdk_bfannothandler.h
@@ -29,7 +29,6 @@ class CPDFSDK_BFAnnotHandler : public IPDFSDK_AnnotHandler {
~CPDFSDK_BFAnnotHandler() override;
CFX_ByteString GetType() override;
- CFX_ByteString GetName() override;
FX_BOOL CanAnswer(CPDFSDK_Annot* pAnnot) override;
CPDFSDK_Annot* NewAnnot(CPDF_Annot* pAnnot, CPDFSDK_PageView* pPage) override;
#ifdef PDF_ENABLE_XFA
diff --git a/fpdfsdk/include/cpdfsdk_xfaannothandler.h b/fpdfsdk/include/cpdfsdk_xfaannothandler.h
index db5e4b7ea6..2dd6f297a7 100644
--- a/fpdfsdk/include/cpdfsdk_xfaannothandler.h
+++ b/fpdfsdk/include/cpdfsdk_xfaannothandler.h
@@ -26,7 +26,6 @@ class CPDFSDK_XFAAnnotHandler : public IPDFSDK_AnnotHandler {
~CPDFSDK_XFAAnnotHandler() override;
CFX_ByteString GetType() override;
- CFX_ByteString GetName() override;
FX_BOOL CanAnswer(CPDFSDK_Annot* pAnnot) override;
CPDFSDK_Annot* NewAnnot(CPDF_Annot* pAnnot, CPDFSDK_PageView* pPage) override;
CPDFSDK_Annot* NewAnnot(CXFA_FFWidget* pAnnot,
diff --git a/fpdfsdk/include/ipdfsdk_annothandler.h b/fpdfsdk/include/ipdfsdk_annothandler.h
index ac7be62bce..0dd1a93cc8 100644
--- a/fpdfsdk/include/ipdfsdk_annothandler.h
+++ b/fpdfsdk/include/ipdfsdk_annothandler.h
@@ -29,7 +29,6 @@ class IPDFSDK_AnnotHandler {
virtual ~IPDFSDK_AnnotHandler() {}
virtual CFX_ByteString GetType() = 0;
- virtual CFX_ByteString GetName() = 0;
virtual FX_BOOL CanAnswer(CPDFSDK_Annot* pAnnot) = 0;
virtual CPDFSDK_Annot* NewAnnot(CPDF_Annot* pAnnot,
CPDFSDK_PageView* pPage) = 0;