summaryrefslogtreecommitdiff
path: root/xfa/fde/css/fde_css.cpp
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2017-01-16 16:03:44 -0500
committerChromium commit bot <commit-bot@chromium.org>2017-01-16 21:14:58 +0000
commitcfb856c4744a9e0ff0f0db5602d0a13c835570ce (patch)
tree8880b3041fd6d780a630ba49813a17a608b83d35 /xfa/fde/css/fde_css.cpp
parent135609831bcad2da79d720cfdd3b55929b48b0ea (diff)
downloadpdfium-cfb856c4744a9e0ff0f0db5602d0a13c835570ce.tar.xz
Remove IFDE_CSS interfaces which are only implemented once.
This CL cleans up some interface classes from FDE CSS. Change-Id: I975e5d63f8ae6a0bc7bb849b6f11f0ae43092e4d Reviewed-on: https://pdfium-review.googlesource.com/2177 Commit-Queue: dsinclair <dsinclair@chromium.org> Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'xfa/fde/css/fde_css.cpp')
-rw-r--r--xfa/fde/css/fde_css.cpp27
1 files changed, 0 insertions, 27 deletions
diff --git a/xfa/fde/css/fde_css.cpp b/xfa/fde/css/fde_css.cpp
deleted file mode 100644
index c9122b4bfd..0000000000
--- a/xfa/fde/css/fde_css.cpp
+++ /dev/null
@@ -1,27 +0,0 @@
-// Copyright 2016 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 "xfa/fde/css/fde_css.h"
-
-FDE_CSSVALUETYPE IFDE_CSSPrimitiveValue::GetType() const {
- return FDE_CSSVALUETYPE_Primitive;
-}
-
-FDE_CSSVALUETYPE IFDE_CSSValueList::GetType() const {
- return FDE_CSSVALUETYPE_List;
-}
-
-FDE_CSSRuleType IFDE_CSSStyleRule::GetType() const {
- return FDE_CSSRuleType::Style;
-}
-
-FDE_CSSRuleType IFDE_CSSMediaRule::GetType() const {
- return FDE_CSSRuleType::Media;
-}
-
-FDE_CSSRuleType IFDE_CSSFontFaceRule::GetType() const {
- return FDE_CSSRuleType::FontFace;
-}