summaryrefslogtreecommitdiff
path: root/fpdfsdk/pdfwindow/cpwl_pathdata.cpp
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2017-02-23 09:59:05 -0500
committerChromium commit bot <commit-bot@chromium.org>2017-02-23 15:26:17 +0000
commitfc54e054811510c3d7c8a9c6af6c90c3222c7029 (patch)
tree98025207bd4d1f397be489fe54c42b148cf40137 /fpdfsdk/pdfwindow/cpwl_pathdata.cpp
parenta0061afa12e0fec210727c9478adb8ac78c5d63c (diff)
downloadpdfium-fc54e054811510c3d7c8a9c6af6c90c3222c7029.tar.xz
Cleanup PWL_Utils.
This CL removes unused methods, moves methods to correct files and removes unused defines. Change-Id: I5087869b451e57d5325831814f0fa1c7f222cf4d Reviewed-on: https://pdfium-review.googlesource.com/2823 Commit-Queue: dsinclair <dsinclair@chromium.org> Reviewed-by: Nicolás Peña <npm@chromium.org> Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'fpdfsdk/pdfwindow/cpwl_pathdata.cpp')
-rw-r--r--fpdfsdk/pdfwindow/cpwl_pathdata.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/fpdfsdk/pdfwindow/cpwl_pathdata.cpp b/fpdfsdk/pdfwindow/cpwl_pathdata.cpp
deleted file mode 100644
index 64fcd90820..0000000000
--- a/fpdfsdk/pdfwindow/cpwl_pathdata.cpp
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 PDFium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-
-#include "fpdfsdk/pdfwindow/cpwl_pathdata.h"
-
-CPWL_PathData::CPWL_PathData() : point(), type(PWLPT_UNKNOWN) {}
-
-CPWL_PathData::CPWL_PathData(const CFX_PointF& pt, PWL_PATHDATA_TYPE tp)
- : point(pt), type(tp) {}
-
-CPWL_PathData::CPWL_PathData(const CPWL_PathData&) = default;
-
-CPWL_PathData::~CPWL_PathData() = default;