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

Side by Side Diff: core/fpdfapi/fpdf_parser/cfdf_document.cpp

Issue 2032613003: Get rid of NULLs in core/ (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: Fix a bad merge Created 4 years, 6 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/fpdf_page/pageint.h ('k') | core/fpdfapi/fpdf_parser/cpdf_array.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 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 #include "core/fpdfapi/fpdf_parser/include/cfdf_document.h" 7 #include "core/fpdfapi/fpdf_parser/include/cfdf_document.h"
8 8
9 #include "core/fpdfapi/fpdf_edit/include/cpdf_creator.h" 9 #include "core/fpdfapi/fpdf_edit/include/cpdf_creator.h"
10 #include "core/fpdfapi/fpdf_parser/cpdf_syntax_parser.h" 10 #include "core/fpdfapi/fpdf_parser/cpdf_syntax_parser.h"
11 #include "core/fpdfapi/fpdf_parser/include/cpdf_dictionary.h" 11 #include "core/fpdfapi/fpdf_parser/include/cpdf_dictionary.h"
12 12
13 CFDF_Document::CFDF_Document() : CPDF_IndirectObjectHolder(NULL) { 13 CFDF_Document::CFDF_Document() : CPDF_IndirectObjectHolder(nullptr) {
14 m_pRootDict = NULL; 14 m_pRootDict = nullptr;
15 m_pFile = NULL; 15 m_pFile = nullptr;
16 m_bOwnFile = FALSE; 16 m_bOwnFile = FALSE;
17 } 17 }
18 CFDF_Document::~CFDF_Document() { 18 CFDF_Document::~CFDF_Document() {
19 if (m_bOwnFile && m_pFile) { 19 if (m_bOwnFile && m_pFile) {
20 m_pFile->Release(); 20 m_pFile->Release();
21 } 21 }
22 } 22 }
23 CFDF_Document* CFDF_Document::CreateNewDoc() { 23 CFDF_Document* CFDF_Document::CreateNewDoc() {
24 CFDF_Document* pDoc = new CFDF_Document; 24 CFDF_Document* pDoc = new CFDF_Document;
25 pDoc->m_pRootDict = new CPDF_Dictionary; 25 pDoc->m_pRootDict = new CPDF_Dictionary;
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 return FALSE; 88 return FALSE;
89 } 89 }
90 buf << "%FDF-1.2\r\n"; 90 buf << "%FDF-1.2\r\n";
91 for (const auto& pair : m_IndirectObjs) { 91 for (const auto& pair : m_IndirectObjs) {
92 buf << pair.first << " 0 obj\r\n" << pair.second << "\r\nendobj\r\n\r\n"; 92 buf << pair.first << " 0 obj\r\n" << pair.second << "\r\nendobj\r\n\r\n";
93 } 93 }
94 buf << "trailer\r\n<</Root " << m_pRootDict->GetObjNum() 94 buf << "trailer\r\n<</Root " << m_pRootDict->GetObjNum()
95 << " 0 R>>\r\n%%EOF\r\n"; 95 << " 0 R>>\r\n%%EOF\r\n";
96 return TRUE; 96 return TRUE;
97 } 97 }
OLDNEW
« no previous file with comments | « core/fpdfapi/fpdf_page/pageint.h ('k') | core/fpdfapi/fpdf_parser/cpdf_array.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698