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

Side by Side Diff: core/include/fpdfapi/fpdf_serial.h

Issue 1160443004: Fix ALL the include guards. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Full style-guide compliance. Created 5 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/include/fpdfapi/fpdf_resource.h ('k') | core/include/fpdfapi/fpdfapi.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 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 #ifndef _FPDF_SERIAL_ 7 #ifndef CORE_INCLUDE_FPDFAPI_FPDF_SERIAL_H_
8 #define _FPDF_SERIAL_ 8 #define CORE_INCLUDE_FPDFAPI_FPDF_SERIAL_H_
9 #ifndef _FPDF_PAGE_ 9
10 #include "fpdf_page.h" 10 #include "fpdf_page.h"
11 #endif
12 #ifndef _FPDF_PAGEOBJ_H_
13 #include "fpdf_pageobj.h" 11 #include "fpdf_pageobj.h"
14 #endif 12
15 class CPDF_ObjectStream; 13 class CPDF_ObjectStream;
16 class CPDF_XRefStream; 14 class CPDF_XRefStream;
17 CFX_ByteTextBuf& operator << (CFX_ByteTextBuf& buf, const CPDF_Object* pObj); 15 CFX_ByteTextBuf& operator << (CFX_ByteTextBuf& buf, const CPDF_Object* pObj);
18 class CPDF_ObjArchiveSaver : public CFX_ArchiveSaver 16 class CPDF_ObjArchiveSaver : public CFX_ArchiveSaver
19 { 17 {
20 public: 18 public:
21 19
22 friend CPDF_ObjArchiveSaver& operator << (CPDF_ObjArchiveSaver& ar, c onst CPDF_Object* pObj); 20 friend CPDF_ObjArchiveSaver& operator << (CPDF_ObjArchiveSaver& ar, c onst CPDF_Object* pObj);
23 protected: 21 protected:
24 22
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 193
196 CFX_DWordListArray m_ObjectSize; 194 CFX_DWordListArray m_ObjectSize;
197 CFX_DWordArray m_NewObjNumArray; 195 CFX_DWordArray m_NewObjNumArray;
198 196
199 CPDF_Array* m_pIDArray; 197 CPDF_Array* m_pIDArray;
200 198
201 FX_INT32 m_FileVersion; 199 FX_INT32 m_FileVersion;
202 friend class CPDF_ObjectStream; 200 friend class CPDF_ObjectStream;
203 friend class CPDF_XRefStream; 201 friend class CPDF_XRefStream;
204 }; 202 };
205 #endif 203
204 #endif // CORE_INCLUDE_FPDFAPI_FPDF_SERIAL_H_
OLDNEW
« no previous file with comments | « core/include/fpdfapi/fpdf_resource.h ('k') | core/include/fpdfapi/fpdfapi.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698