| Index: core/fpdfapi/fpdf_parser/cpdf_number.h
 | 
| diff --git a/core/fpdfapi/fpdf_parser/cpdf_number.h b/core/fpdfapi/fpdf_parser/cpdf_number.h
 | 
| deleted file mode 100644
 | 
| index 068a9c9594f459fb170bdfa19b602aa1006b9843..0000000000000000000000000000000000000000
 | 
| --- a/core/fpdfapi/fpdf_parser/cpdf_number.h
 | 
| +++ /dev/null
 | 
| @@ -1,44 +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
 | 
| -
 | 
| -#ifndef CORE_FPDFAPI_FPDF_PARSER_CPDF_NUMBER_H_
 | 
| -#define CORE_FPDFAPI_FPDF_PARSER_CPDF_NUMBER_H_
 | 
| -
 | 
| -#include "core/fpdfapi/fpdf_parser/cpdf_object.h"
 | 
| -#include "core/fxcrt/fx_string.h"
 | 
| -#include "core/fxcrt/fx_system.h"
 | 
| -
 | 
| -class CPDF_Number : public CPDF_Object {
 | 
| - public:
 | 
| -  CPDF_Number();
 | 
| -  explicit CPDF_Number(int value);
 | 
| -  explicit CPDF_Number(FX_FLOAT value);
 | 
| -  explicit CPDF_Number(const CFX_ByteStringC& str);
 | 
| -
 | 
| -  // CPDF_Object.
 | 
| -  Type GetType() const override;
 | 
| -  CPDF_Object* Clone() const override;
 | 
| -  CFX_ByteString GetString() const override;
 | 
| -  FX_FLOAT GetNumber() const override;
 | 
| -  int GetInteger() const override;
 | 
| -  void SetString(const CFX_ByteString& str) override;
 | 
| -  bool IsNumber() const override;
 | 
| -  CPDF_Number* AsNumber() override;
 | 
| -  const CPDF_Number* AsNumber() const override;
 | 
| -
 | 
| -  bool IsInteger() const { return m_bInteger; }
 | 
| -
 | 
| - protected:
 | 
| -  ~CPDF_Number() override;
 | 
| -
 | 
| -  bool m_bInteger;
 | 
| -  union {
 | 
| -    int m_Integer;
 | 
| -    FX_FLOAT m_Float;
 | 
| -  };
 | 
| -};
 | 
| -
 | 
| -#endif  // CORE_FPDFAPI_FPDF_PARSER_CPDF_NUMBER_H_
 | 
| 
 |