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/src/fsdk_mgr.cpp | |
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/src/fsdk_mgr.cpp')
-rw-r--r-- | fpdfsdk/src/fsdk_mgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpdfsdk/src/fsdk_mgr.cpp b/fpdfsdk/src/fsdk_mgr.cpp index fa270cc289..3eca559285 100644 --- a/fpdfsdk/src/fsdk_mgr.cpp +++ b/fpdfsdk/src/fsdk_mgr.cpp @@ -396,7 +396,7 @@ CPDFSDK_AnnotHandlerMgr* CPDFDoc_Environment::GetAnnotHandlerMgr() { CPDFSDK_ActionHandler* CPDFDoc_Environment::GetActionHander() { if (!m_pActionHandler) - m_pActionHandler = new CPDFSDK_ActionHandler(this); + m_pActionHandler = new CPDFSDK_ActionHandler(); return m_pActionHandler; } |