summaryrefslogtreecommitdiff
path: root/xfa/fwl/basewidget/fxmath_barcodeimp.cpp
diff options
context:
space:
mode:
authordsinclair <dsinclair@chromium.org>2016-04-13 10:14:26 -0700
committerCommit bot <commit-bot@chromium.org>2016-04-13 10:14:26 -0700
commiteb9cf677ca1bfd9431e43804b5524a1cf9bd9a8f (patch)
treeaa728330ce8dc8251487e35d18b3bcdd2a120c1d /xfa/fwl/basewidget/fxmath_barcodeimp.cpp
parenta364fad07e5baf4a72ea734e64fb55664cab075e (diff)
downloadpdfium-eb9cf677ca1bfd9431e43804b5524a1cf9bd9a8f.tar.xz
Remove IFX_Barcode.
This CL replaces IFX_Barcode with the concrete class. BUG=pdfium:468 Review URL: https://codereview.chromium.org/1890443002
Diffstat (limited to 'xfa/fwl/basewidget/fxmath_barcodeimp.cpp')
-rw-r--r--xfa/fwl/basewidget/fxmath_barcodeimp.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/xfa/fwl/basewidget/fxmath_barcodeimp.cpp b/xfa/fwl/basewidget/fxmath_barcodeimp.cpp
index 9792c6f7cc..5ca0927671 100644
--- a/xfa/fwl/basewidget/fxmath_barcodeimp.cpp
+++ b/xfa/fwl/basewidget/fxmath_barcodeimp.cpp
@@ -386,11 +386,3 @@ CFX_WideString CFX_Barcode::Decode(CFX_DIBitmap* pBitmap, int32_t& errorCode) {
errorCode = BCExceptionUnSupportedBarcode;
return CFX_WideString();
}
-IFX_Barcode* FX_Barcode_Create(BC_TYPE type) {
- CFX_Barcode* pBarcode = new CFX_Barcode;
- if (pBarcode->Create(type)) {
- return pBarcode;
- }
- pBarcode->Release();
- return NULL;
-}