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

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

Issue 2350263002: Make CPDF_IndirectObjectHolder use unique_ptr to objects (Closed)
Patch Set: Leave my name alone please Created 4 years, 3 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
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"
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 } 83 }
84 } 84 }
85 } 85 }
86 86
87 FX_BOOL CFDF_Document::WriteBuf(CFX_ByteTextBuf& buf) const { 87 FX_BOOL CFDF_Document::WriteBuf(CFX_ByteTextBuf& buf) const {
88 if (!m_pRootDict) 88 if (!m_pRootDict)
89 return FALSE; 89 return FALSE;
90 90
91 buf << "%FDF-1.2\r\n"; 91 buf << "%FDF-1.2\r\n";
92 for (const auto& pair : *this) 92 for (const auto& pair : *this)
93 buf << pair.first << " 0 obj\r\n" << pair.second << "\r\nendobj\r\n\r\n"; 93 buf << pair.first << " 0 obj\r\n"
94 << pair.second.get() << "\r\nendobj\r\n\r\n";
94 95
95 buf << "trailer\r\n<</Root " << m_pRootDict->GetObjNum() 96 buf << "trailer\r\n<</Root " << m_pRootDict->GetObjNum()
96 << " 0 R>>\r\n%%EOF\r\n"; 97 << " 0 R>>\r\n%%EOF\r\n";
97 return TRUE; 98 return TRUE;
98 } 99 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698