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

Side by Side Diff: core/fpdfapi/parser/cpdf_reference.cpp

Issue 2392603004: Move core/fpdfapi/fpdf_parser to core/fpdfapi/parser (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 unified diff | Download patch
« no previous file with comments | « core/fpdfapi/parser/cpdf_reference.h ('k') | core/fpdfapi/parser/cpdf_security_handler.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 2016 PDFium Authors. All rights reserved. 1 // Copyright 2016 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 #include "core/fpdfapi/fpdf_parser/cpdf_reference.h" 7 #include "core/fpdfapi/parser/cpdf_reference.h"
8 8
9 #include "core/fpdfapi/fpdf_parser/cpdf_indirect_object_holder.h" 9 #include "core/fpdfapi/parser/cpdf_indirect_object_holder.h"
10 #include "third_party/base/stl_util.h" 10 #include "third_party/base/stl_util.h"
11 11
12 CPDF_Reference::CPDF_Reference(CPDF_IndirectObjectHolder* pDoc, int objnum) 12 CPDF_Reference::CPDF_Reference(CPDF_IndirectObjectHolder* pDoc, int objnum)
13 : m_pObjList(pDoc), m_RefObjNum(objnum) {} 13 : m_pObjList(pDoc), m_RefObjNum(objnum) {}
14 14
15 CPDF_Reference::~CPDF_Reference() {} 15 CPDF_Reference::~CPDF_Reference() {}
16 16
17 CPDF_Object::Type CPDF_Reference::GetType() const { 17 CPDF_Object::Type CPDF_Reference::GetType() const {
18 return REFERENCE; 18 return REFERENCE;
19 } 19 }
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 74
75 void CPDF_Reference::SetRef(CPDF_IndirectObjectHolder* pDoc, uint32_t objnum) { 75 void CPDF_Reference::SetRef(CPDF_IndirectObjectHolder* pDoc, uint32_t objnum) {
76 m_pObjList = pDoc; 76 m_pObjList = pDoc;
77 m_RefObjNum = objnum; 77 m_RefObjNum = objnum;
78 } 78 }
79 79
80 CPDF_Object* CPDF_Reference::GetDirect() const { 80 CPDF_Object* CPDF_Reference::GetDirect() const {
81 return m_pObjList ? m_pObjList->GetOrParseIndirectObject(m_RefObjNum) 81 return m_pObjList ? m_pObjList->GetOrParseIndirectObject(m_RefObjNum)
82 : nullptr; 82 : nullptr;
83 } 83 }
OLDNEW
« no previous file with comments | « core/fpdfapi/parser/cpdf_reference.h ('k') | core/fpdfapi/parser/cpdf_security_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698