diff options
author | Tom Sepez <tsepez@chromium.org> | 2016-02-09 10:18:11 -0800 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2016-02-09 10:18:11 -0800 |
commit | c74acf4552944c5485b1175c008708d19b57d322 (patch) | |
tree | 11556c712418376dd21bda153e75a40cda94d5cd /xfa/src/fxfa | |
parent | 11d93559cea7a0894e05249e7dac2035ad79994e (diff) | |
download | pdfium-c74acf4552944c5485b1175c008708d19b57d322.tar.xz |
Several pure virtual IFWL_Adapter* classes not implemented.
The routines that would return them always return NULL. Some
path, however, didn't previously check for NULL. Those must
have been bugs; treat such cases as unreachable.
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1679103002 .
Diffstat (limited to 'xfa/src/fxfa')
-rw-r--r-- | xfa/src/fxfa/src/app/xfa_ffapp.cpp | 9 | ||||
-rw-r--r-- | xfa/src/fxfa/src/app/xfa_ffapp.h | 3 |
2 files changed, 0 insertions, 12 deletions
diff --git a/xfa/src/fxfa/src/app/xfa_ffapp.cpp b/xfa/src/fxfa/src/app/xfa_ffapp.cpp index c9e791a3be..e153d956c5 100644 --- a/xfa/src/fxfa/src/app/xfa_ffapp.cpp +++ b/xfa/src/fxfa/src/app/xfa_ffapp.cpp @@ -204,12 +204,3 @@ IFWL_AdapterThreadMgr* CXFA_FFApp::GetThreadMgr() { IFWL_AdapterTimerMgr* CXFA_FFApp::GetTimerMgr() { return m_pProvider->GetTimerMgr(); } -IFWL_AdapterCursorMgr* CXFA_FFApp::GetCursorMgr() { - return NULL; -} -IFWL_AdapterMonitorMgr* CXFA_FFApp::GetMonitorMgr() { - return NULL; -} -IFWL_AdapterClipboardMgr* CXFA_FFApp::GetClipboardMgr() { - return NULL; -} diff --git a/xfa/src/fxfa/src/app/xfa_ffapp.h b/xfa/src/fxfa/src/app/xfa_ffapp.h index 52ad2af16c..515e192430 100644 --- a/xfa/src/fxfa/src/app/xfa_ffapp.h +++ b/xfa/src/fxfa/src/app/xfa_ffapp.h @@ -45,9 +45,6 @@ class CXFA_FFApp : public IXFA_App, public IFWL_AdapterNative { IFWL_WidgetMgrDelegate* pDelegate) override; IFWL_AdapterThreadMgr* GetThreadMgr() override; IFWL_AdapterTimerMgr* GetTimerMgr() override; - IFWL_AdapterCursorMgr* GetCursorMgr() override; - IFWL_AdapterMonitorMgr* GetMonitorMgr() override; - IFWL_AdapterClipboardMgr* GetClipboardMgr() override; CXFA_FontMgr* GetXFAFontMgr(); IFX_FontMgr* GetFDEFontMgr(); |