diff options
author | Tom Sepez <tsepez@chromium.org> | 2016-02-16 11:34:36 -0800 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2016-02-16 11:34:36 -0800 |
commit | 5f554133283d03b6b30bcecfcdc689cccf3799ec (patch) | |
tree | f24ac81649968df6d826e3ce6c3ffbbcf9f98546 /xfa/include/fwl/adapter/fwl_adapternative.h | |
parent | e6a5138ec89a1235bf426fd19a0e4f61dfeafca0 (diff) | |
download | pdfium-5f554133283d03b6b30bcecfcdc689cccf3799ec.tar.xz |
IFWL_App::Create() always passed adapter, "fuel" adapter unused
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1707433002 .
Diffstat (limited to 'xfa/include/fwl/adapter/fwl_adapternative.h')
-rw-r--r-- | xfa/include/fwl/adapter/fwl_adapternative.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/xfa/include/fwl/adapter/fwl_adapternative.h b/xfa/include/fwl/adapter/fwl_adapternative.h index b914f7bfb2..3ea5c89270 100644 --- a/xfa/include/fwl/adapter/fwl_adapternative.h +++ b/xfa/include/fwl/adapter/fwl_adapternative.h @@ -4,8 +4,8 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#ifndef _FWL_ADAPTER_NATIVE_H -#define _FWL_ADAPTER_NATIVE_H +#ifndef FWL_ADAPTERNATIVE_H_ +#define FWL_ADAPTERNATIVE_H_ class IFWL_WidgetMgrDelegate; class IFWL_AdapterWidgetMgr; @@ -20,6 +20,5 @@ class IFWL_AdapterNative { virtual IFWL_AdapterThreadMgr* GetThreadMgr() = 0; virtual IFWL_AdapterTimerMgr* GetTimerMgr() = 0; }; -IFWL_AdapterNative* FWL_CreateFuelAdapterNative(); -void FWL_ReleaseFuelAdapterNative(IFWL_AdapterNative* pAdapterNative); -#endif + +#endif // FWL_ADAPTERNATIVE_H_ |