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

Side by Side Diff: core/fpdfapi/parser/cpdf_array.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_array.h ('k') | core/fpdfapi/parser/cpdf_array_unittest.cpp » ('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_array.h" 7 #include "core/fpdfapi/parser/cpdf_array.h"
8 8
9 #include <set> 9 #include <set>
10 10
11 #include "core/fpdfapi/fpdf_parser/cpdf_name.h" 11 #include "core/fpdfapi/parser/cpdf_name.h"
12 #include "core/fpdfapi/fpdf_parser/cpdf_number.h" 12 #include "core/fpdfapi/parser/cpdf_number.h"
13 #include "core/fpdfapi/fpdf_parser/cpdf_reference.h" 13 #include "core/fpdfapi/parser/cpdf_reference.h"
14 #include "core/fpdfapi/fpdf_parser/cpdf_stream.h" 14 #include "core/fpdfapi/parser/cpdf_stream.h"
15 #include "core/fpdfapi/fpdf_parser/cpdf_string.h" 15 #include "core/fpdfapi/parser/cpdf_string.h"
16 #include "third_party/base/logging.h" 16 #include "third_party/base/logging.h"
17 #include "third_party/base/stl_util.h" 17 #include "third_party/base/stl_util.h"
18 18
19 CPDF_Array::CPDF_Array() {} 19 CPDF_Array::CPDF_Array() {}
20 20
21 CPDF_Array::~CPDF_Array() { 21 CPDF_Array::~CPDF_Array() {
22 // Mark the object as deleted so that it will not be deleted again 22 // Mark the object as deleted so that it will not be deleted again
23 // in case of cyclic references. 23 // in case of cyclic references.
24 m_ObjNum = kInvalidObjNum; 24 m_ObjNum = kInvalidObjNum;
25 for (auto& it : m_Objects) { 25 for (auto& it : m_Objects) {
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 } 191 }
192 192
193 void CPDF_Array::AddNumber(FX_FLOAT f) { 193 void CPDF_Array::AddNumber(FX_FLOAT f) {
194 Add(new CPDF_Number(f)); 194 Add(new CPDF_Number(f));
195 } 195 }
196 196
197 void CPDF_Array::AddReference(CPDF_IndirectObjectHolder* pDoc, 197 void CPDF_Array::AddReference(CPDF_IndirectObjectHolder* pDoc,
198 uint32_t objnum) { 198 uint32_t objnum) {
199 Add(new CPDF_Reference(pDoc, objnum)); 199 Add(new CPDF_Reference(pDoc, objnum));
200 } 200 }
OLDNEW
« no previous file with comments | « core/fpdfapi/parser/cpdf_array.h ('k') | core/fpdfapi/parser/cpdf_array_unittest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698