| Index: core/fpdfapi/fpdf_parser/cpdf_stream_acc.h
 | 
| diff --git a/core/fpdfapi/fpdf_parser/cpdf_stream_acc.h b/core/fpdfapi/fpdf_parser/cpdf_stream_acc.h
 | 
| deleted file mode 100644
 | 
| index cf2bc8a01d6120127e347a2e52e0c98324d3b228..0000000000000000000000000000000000000000
 | 
| --- a/core/fpdfapi/fpdf_parser/cpdf_stream_acc.h
 | 
| +++ /dev/null
 | 
| @@ -1,46 +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_STREAM_ACC_H_
 | 
| -#define CORE_FPDFAPI_FPDF_PARSER_CPDF_STREAM_ACC_H_
 | 
| -
 | 
| -#include "core/fpdfapi/fpdf_parser/cpdf_dictionary.h"
 | 
| -#include "core/fpdfapi/fpdf_parser/cpdf_stream.h"
 | 
| -#include "core/fxcrt/fx_string.h"
 | 
| -#include "core/fxcrt/fx_system.h"
 | 
| -
 | 
| -class CPDF_StreamAcc {
 | 
| - public:
 | 
| -  CPDF_StreamAcc();
 | 
| -  ~CPDF_StreamAcc();
 | 
| -
 | 
| -  void LoadAllData(const CPDF_Stream* pStream,
 | 
| -                   FX_BOOL bRawAccess = FALSE,
 | 
| -                   uint32_t estimated_size = 0,
 | 
| -                   FX_BOOL bImageAcc = FALSE);
 | 
| -
 | 
| -  const CPDF_Stream* GetStream() const { return m_pStream; }
 | 
| -  CPDF_Dictionary* GetDict() const {
 | 
| -    return m_pStream ? m_pStream->GetDict() : nullptr;
 | 
| -  }
 | 
| -
 | 
| -  const uint8_t* GetData() const;
 | 
| -  uint32_t GetSize() const;
 | 
| -  const CFX_ByteString& GetImageDecoder() const { return m_ImageDecoder; }
 | 
| -  const CPDF_Dictionary* GetImageParam() const { return m_pImageParam; }
 | 
| -  uint8_t* DetachData();
 | 
| -
 | 
| - protected:
 | 
| -  uint8_t* m_pData;
 | 
| -  uint32_t m_dwSize;
 | 
| -  FX_BOOL m_bNewBuf;
 | 
| -  CFX_ByteString m_ImageDecoder;
 | 
| -  CPDF_Dictionary* m_pImageParam;
 | 
| -  const CPDF_Stream* m_pStream;
 | 
| -  uint8_t* m_pSrcData;
 | 
| -};
 | 
| -
 | 
| -#endif  // CORE_FPDFAPI_FPDF_PARSER_CPDF_STREAM_ACC_H_
 | 
| 
 |