diff options
author | dsinclair <dsinclair@chromium.org> | 2016-04-12 09:51:45 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-04-12 09:51:45 -0700 |
commit | 25c223d1c3a662a0e69a5bf95083afbd5fa3cd97 (patch) | |
tree | d1b6a27b093b969696c2697dd183deb21d8cb6bd /xfa/fde/fde_object.cpp | |
parent | f9924422a4cd1d1b6d2d4240c83b5c1082da3629 (diff) | |
download | pdfium-25c223d1c3a662a0e69a5bf95083afbd5fa3cd97.tar.xz |
Only SolidBrush types are created, remove other brushes.
We only ever create a CFDE_SolidBrush, there is nothing which creates Texture,
Hatch or LinearGradient brushes. This Cl removes all the code that isn't
used for SolidBrush.
A followup Cl will rename SolidBrush to Brush and remove the Brush interface
in favour of the concrete class.
BUG=pdfium:468
Review URL: https://codereview.chromium.org/1877383002
Diffstat (limited to 'xfa/fde/fde_object.cpp')
-rw-r--r-- | xfa/fde/fde_object.cpp | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/xfa/fde/fde_object.cpp b/xfa/fde/fde_object.cpp deleted file mode 100644 index 92b9f8af1f..0000000000 --- a/xfa/fde/fde_object.cpp +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright 2014 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/fde_object.h" - -IFDE_Pen* IFDE_Pen::Create() { - return new CFDE_Pen(); -} -IFDE_Brush* IFDE_Brush::Create(int32_t iType) { - switch (iType) { - case FDE_BRUSHTYPE_Solid: - return new CFDE_SolidBrush; - case FDE_BRUSHTYPE_Hatch: - return new CFDE_HatchBrush; - case FDE_BRUSHTYPE_Texture: - return new CFDE_TextureBrush; - case FDE_BRUSHTYPE_LinearGradient: - return new CFDE_LinearBrush; - default: - return NULL; - } -} |