summaryrefslogtreecommitdiff
path: root/xfa/include/fwl/adapter/fwl_adapternative.h
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2016-02-09 10:18:11 -0800
committerTom Sepez <tsepez@chromium.org>2016-02-09 10:18:11 -0800
commitc74acf4552944c5485b1175c008708d19b57d322 (patch)
tree11556c712418376dd21bda153e75a40cda94d5cd /xfa/include/fwl/adapter/fwl_adapternative.h
parent11d93559cea7a0894e05249e7dac2035ad79994e (diff)
downloadpdfium-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/include/fwl/adapter/fwl_adapternative.h')
-rw-r--r--xfa/include/fwl/adapter/fwl_adapternative.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/xfa/include/fwl/adapter/fwl_adapternative.h b/xfa/include/fwl/adapter/fwl_adapternative.h
index 6d02610337..b914f7bfb2 100644
--- a/xfa/include/fwl/adapter/fwl_adapternative.h
+++ b/xfa/include/fwl/adapter/fwl_adapternative.h
@@ -6,13 +6,11 @@
#ifndef _FWL_ADAPTER_NATIVE_H
#define _FWL_ADAPTER_NATIVE_H
+
class IFWL_WidgetMgrDelegate;
class IFWL_AdapterWidgetMgr;
class IFWL_AdapterThreadMgr;
class IFWL_AdapterTimerMgr;
-class IFWL_AdapterCursorMgr;
-class IFWL_AdapterMonitorMgr;
-class IFWL_AdapterClipboardMgr;
class IFWL_AdapterNative {
public:
@@ -21,9 +19,6 @@ class IFWL_AdapterNative {
IFWL_WidgetMgrDelegate* pDelegate) = 0;
virtual IFWL_AdapterThreadMgr* GetThreadMgr() = 0;
virtual IFWL_AdapterTimerMgr* GetTimerMgr() = 0;
- virtual IFWL_AdapterCursorMgr* GetCursorMgr() = 0;
- virtual IFWL_AdapterMonitorMgr* GetMonitorMgr() = 0;
- virtual IFWL_AdapterClipboardMgr* GetClipboardMgr() = 0;
};
IFWL_AdapterNative* FWL_CreateFuelAdapterNative();
void FWL_ReleaseFuelAdapterNative(IFWL_AdapterNative* pAdapterNative);