diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-09-01 13:53:19 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-09-01 13:53:19 -0700 |
commit | 23213b2750e33dfe96b091b78ec8b10fe4d73a67 (patch) | |
tree | 00b51c5973a0e6b214532834f839d5e61c90768e /fpdfsdk/include | |
parent | 6e945a1ebbacde3ed2a4fc83ccb7215ccbc46931 (diff) | |
download | pdfium-23213b2750e33dfe96b091b78ec8b10fe4d73a67.tar.xz |
CPDFSDK_MediaActionHandler is unused.
It's never instantiated, and any pointers to it are always NULL.
Also kill an unused arg to CPDFSDK_ActionHandler ctor along the way.
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1329583004 .
Diffstat (limited to 'fpdfsdk/include')
-rw-r--r-- | fpdfsdk/include/fsdk_actionhandler.h | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/fpdfsdk/include/fsdk_actionhandler.h b/fpdfsdk/include/fsdk_actionhandler.h index dfb7d488c2..09f13ac5b8 100644 --- a/fpdfsdk/include/fsdk_actionhandler.h +++ b/fpdfsdk/include/fsdk_actionhandler.h @@ -13,12 +13,10 @@ #include "fsdk_baseform.h" class CFX_PtrList; -class CPDFDoc_Environment; class CPDFSDK_Annot; class CPDFSDK_Document; class CPDF_Bookmark; class CPDF_Dictionary; -class IFXJS_Runtime; class CPDFSDK_FormActionHandler { public: @@ -31,21 +29,9 @@ class CPDFSDK_FormActionHandler { CPDFSDK_Document* pDocument); }; -class CPDFSDK_MediaActionHandler { - public: - FX_BOOL DoAction_Rendition(const CPDF_Action& action, - CPDFSDK_Document* pDocument); - FX_BOOL DoAction_Sound(const CPDF_Action& action, - CPDFSDK_Document* pDocument); - FX_BOOL DoAction_Movie(const CPDF_Action& action, - CPDFSDK_Document* pDocument); -}; - class CPDFSDK_ActionHandler { public: - CPDFSDK_ActionHandler(CPDFDoc_Environment* pEvi); - - void SetMediaActionHandler(CPDFSDK_MediaActionHandler* pHandler); + CPDFSDK_ActionHandler(); FX_BOOL DoAction_DocOpen(const CPDF_Action& action, CPDFSDK_Document* pDocument); @@ -131,7 +117,6 @@ class CPDFSDK_ActionHandler { const CPDF_Action& action); nonstd::unique_ptr<CPDFSDK_FormActionHandler> m_pFormActionHandler; - CPDFSDK_MediaActionHandler* m_pMediaActionHandler; }; #endif // FPDFSDK_INCLUDE_FSDK_ACTIONHANDLER_H_ |