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

Side by Side Diff: core/include/fpdfdoc/fpdf_doc.h

Issue 1160443004: Fix ALL the include guards. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: 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
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_DOC_H_ 7 #ifndef FPDF_DOC_H_
8 #define _FPDF_DOC_H_ 8 #define FPDF_DOC_H_
9 #ifndef _FPDF_PARSER_ 9
10 #include "../fpdfapi/fpdf_parser.h" 10 #include "../fpdfapi/fpdf_parser.h"
11 #endif
12 #ifndef _FPDF_RENDER_
13 #include "../fpdfapi/fpdf_render.h" 11 #include "../fpdfapi/fpdf_render.h"
14 #endif 12
15 class CPDF_Action; 13 class CPDF_Action;
16 class CPDF_Annot; 14 class CPDF_Annot;
17 class CPDF_AnnotList; 15 class CPDF_AnnotList;
18 class CPDF_Bookmark; 16 class CPDF_Bookmark;
19 class CPDF_BookmarkTree; 17 class CPDF_BookmarkTree;
20 class CPDF_Dest; 18 class CPDF_Dest;
21 class CPDF_Link; 19 class CPDF_Link;
22 class CPDF_LinkList; 20 class CPDF_LinkList;
23 class CPDF_Metadata; 21 class CPDF_Metadata;
24 class CPDF_NameTree; 22 class CPDF_NameTree;
(...skipping 1719 matching lines...) Expand 10 before | Expand all | Expand 10 after
1744 1742
1745 FX_FLOAT GetOriginalColor(int index, FX_BSTR csEn try); 1743 FX_FLOAT GetOriginalColor(int index, FX_BSTR csEn try);
1746 1744
1747 void GetOriginalColor(int& iColorType , FX_FLOAT fc[4], FX_BSTR csEntry); 1745 void GetOriginalColor(int& iColorType , FX_FLOAT fc[4], FX_BSTR csEntry);
1748 1746
1749 CFX_WideString GetCaption(FX_BSTR csEntry); 1747 CFX_WideString GetCaption(FX_BSTR csEntry);
1750 1748
1751 CPDF_Stream* GetIcon(FX_BSTR csEntry); 1749 CPDF_Stream* GetIcon(FX_BSTR csEntry);
1752 friend class CPDF_FormControl; 1750 friend class CPDF_FormControl;
1753 }; 1751 };
1754 #endif 1752
1753 #endif // FPDF_DOC_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698