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

Unified Diff: core/fpdfapi/fpdf_page/cpdf_pageobject.cpp

Issue 2386423004: Move core/fpdfapi/fpdf_page to core/fpdfapi/page (Closed)
Patch Set: Rebase to master Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « core/fpdfapi/fpdf_page/cpdf_pageobject.h ('k') | core/fpdfapi/fpdf_page/cpdf_pageobjectholder.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/fpdfapi/fpdf_page/cpdf_pageobject.cpp
diff --git a/core/fpdfapi/fpdf_page/cpdf_pageobject.cpp b/core/fpdfapi/fpdf_page/cpdf_pageobject.cpp
deleted file mode 100644
index 4015587304905c4fac4fce0fa22af4a05c331643..0000000000000000000000000000000000000000
--- a/core/fpdfapi/fpdf_page/cpdf_pageobject.cpp
+++ /dev/null
@@ -1,99 +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 "core/fpdfapi/fpdf_page/cpdf_pageobject.h"
-
-CPDF_PageObject::CPDF_PageObject() {}
-
-CPDF_PageObject::~CPDF_PageObject() {}
-
-bool CPDF_PageObject::IsText() const {
- return false;
-}
-
-bool CPDF_PageObject::IsPath() const {
- return false;
-}
-
-bool CPDF_PageObject::IsImage() const {
- return false;
-}
-
-bool CPDF_PageObject::IsShading() const {
- return false;
-}
-
-bool CPDF_PageObject::IsForm() const {
- return false;
-}
-
-CPDF_TextObject* CPDF_PageObject::AsText() {
- return nullptr;
-}
-
-const CPDF_TextObject* CPDF_PageObject::AsText() const {
- return nullptr;
-}
-
-CPDF_PathObject* CPDF_PageObject::AsPath() {
- return nullptr;
-}
-
-const CPDF_PathObject* CPDF_PageObject::AsPath() const {
- return nullptr;
-}
-
-CPDF_ImageObject* CPDF_PageObject::AsImage() {
- return nullptr;
-}
-
-const CPDF_ImageObject* CPDF_PageObject::AsImage() const {
- return nullptr;
-}
-
-CPDF_ShadingObject* CPDF_PageObject::AsShading() {
- return nullptr;
-}
-
-const CPDF_ShadingObject* CPDF_PageObject::AsShading() const {
- return nullptr;
-}
-
-CPDF_FormObject* CPDF_PageObject::AsForm() {
- return nullptr;
-}
-
-const CPDF_FormObject* CPDF_PageObject::AsForm() const {
- return nullptr;
-}
-
-void CPDF_PageObject::CopyData(const CPDF_PageObject* pSrc) {
- CopyStates(*pSrc);
- m_Left = pSrc->m_Left;
- m_Right = pSrc->m_Right;
- m_Top = pSrc->m_Top;
- m_Bottom = pSrc->m_Bottom;
-}
-
-void CPDF_PageObject::TransformClipPath(CFX_Matrix& matrix) {
- if (!m_ClipPath)
- return;
- m_ClipPath.Transform(matrix);
-}
-
-void CPDF_PageObject::TransformGeneralState(CFX_Matrix& matrix) {
- if (!m_GeneralState)
- return;
- m_GeneralState.GetMutableMatrix()->Concat(matrix);
-}
-
-FX_RECT CPDF_PageObject::GetBBox(const CFX_Matrix* pMatrix) const {
- CFX_FloatRect rect(m_Left, m_Bottom, m_Right, m_Top);
- if (pMatrix) {
- pMatrix->TransformRect(rect);
- }
- return rect.GetOuterRect();
-}
« no previous file with comments | « core/fpdfapi/fpdf_page/cpdf_pageobject.h ('k') | core/fpdfapi/fpdf_page/cpdf_pageobjectholder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698