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

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

Issue 1160443004: Fix ALL the include guards. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 5 years, 7 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 #ifndef _FPDF_PARSER_ 7 #ifndef FPDF_PARSER_H_
8 #define _FPDF_PARSER_ 8 #define FPDF_PARSER_H_
9 #ifndef _FX_BASIC_H_ 9
10 #include "../fxcrt/fx_ext.h" 10 #include "../fxcrt/fx_ext.h"
11 #endif
12 #ifndef _FPDF_OBJECTS_
13 #include "fpdf_objects.h" 11 #include "fpdf_objects.h"
14 #endif 12
15 class CPDF_Document; 13 class CPDF_Document;
16 class IPDF_DocParser; 14 class IPDF_DocParser;
17 class CPDF_Parser; 15 class CPDF_Parser;
18 class CPDF_SecurityHandler; 16 class CPDF_SecurityHandler;
19 class CPDF_StandardSecurityHandler; 17 class CPDF_StandardSecurityHandler;
20 class CPDF_CryptoHandler; 18 class CPDF_CryptoHandler;
21 class CPDF_Object; 19 class CPDF_Object;
22 class IFX_FileRead; 20 class IFX_FileRead;
23 class CFDF_Document; 21 class CFDF_Document;
24 class CFDF_Parser; 22 class CFDF_Parser;
(...skipping 915 matching lines...) Expand 10 before | Expand all | Expand 10 after
940 PDF_DATAAVAIL_ACROFORM_SUBOBJECT, 938 PDF_DATAAVAIL_ACROFORM_SUBOBJECT,
941 PDF_DATAAVAIL_PAGETREE, 939 PDF_DATAAVAIL_PAGETREE,
942 PDF_DATAAVAIL_PAGE, 940 PDF_DATAAVAIL_PAGE,
943 PDF_DATAAVAIL_PAGE_LATERLOAD, 941 PDF_DATAAVAIL_PAGE_LATERLOAD,
944 PDF_DATAAVAIL_RESOURCES, 942 PDF_DATAAVAIL_RESOURCES,
945 PDF_DATAAVAIL_DONE, 943 PDF_DATAAVAIL_DONE,
946 PDF_DATAAVAIL_ERROR, 944 PDF_DATAAVAIL_ERROR,
947 PDF_DATAAVAIL_LOADALLFILE, 945 PDF_DATAAVAIL_LOADALLFILE,
948 PDF_DATAAVAIL_TRAILER_APPEND 946 PDF_DATAAVAIL_TRAILER_APPEND
949 }; 947 };
950 #endif 948
949 #endif // FPDF_PARSER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698