Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(708)

Side by Side Diff: core/include/fpdfapi/fpdf_pageobj.h

Issue 1250433003: Merge to XFA: Remove dead code found by Scythe. (Closed) Base URL: https://pdfium.googlesource.com/pdfium@xfa
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | core/include/fpdfapi/fpdf_serial.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 PDFium Authors. All rights reserved. 1 // Copyright 2014 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 6
7 #ifndef CORE_INCLUDE_FPDFAPI_FPDF_PAGEOBJ_H_ 7 #ifndef CORE_INCLUDE_FPDFAPI_FPDF_PAGEOBJ_H_
8 #define CORE_INCLUDE_FPDFAPI_FPDF_PAGEOBJ_H_ 8 #define CORE_INCLUDE_FPDFAPI_FPDF_PAGEOBJ_H_
9 9
10 #include "../fxge/fx_ge.h" 10 #include "../fxge/fx_ge.h"
(...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after
662 { 662 {
663 public: 663 public:
664 CPDF_ShadingObject(); 664 CPDF_ShadingObject();
665 665
666 virtual ~CPDF_ShadingObject(); 666 virtual ~CPDF_ShadingObject();
667 667
668 CPDF_ShadingPattern* m_pShading; 668 CPDF_ShadingPattern* m_pShading;
669 669
670 CFX_AffineMatrix m_Matrix; 670 CFX_AffineMatrix m_Matrix;
671 671
672 CPDF_Page* m_pPage;
673 void Transform(const CFX_AffineMatrix& matrix) override; 672 void Transform(const CFX_AffineMatrix& matrix) override;
674 673
675 void CalcBoundingBox(); 674 void CalcBoundingBox();
676 675
677 protected: 676 protected:
678 void CopyData(const CPDF_PageObject* pSrcObject) override; 677 void CopyData(const CPDF_PageObject* pSrcObject) override;
679 }; 678 };
680 679
681 class CPDF_FormObject : public CPDF_PageObject 680 class CPDF_FormObject : public CPDF_PageObject
682 { 681 {
(...skipping 11 matching lines...) Expand all
694 693
695 CFX_AffineMatrix m_FormMatrix; 694 CFX_AffineMatrix m_FormMatrix;
696 695
697 void CalcBoundingBox(); 696 void CalcBoundingBox();
698 697
699 protected: 698 protected:
700 void CopyData(const CPDF_PageObject* pSrcObject) override; 699 void CopyData(const CPDF_PageObject* pSrcObject) override;
701 }; 700 };
702 701
703 #endif // CORE_INCLUDE_FPDFAPI_FPDF_PAGEOBJ_H_ 702 #endif // CORE_INCLUDE_FPDFAPI_FPDF_PAGEOBJ_H_
OLDNEW
« no previous file with comments | « no previous file | core/include/fpdfapi/fpdf_serial.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698