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

Side by Side Diff: fpdfsdk/include/formfiller/FFL_CBA_Fontmap.h

Issue 1066253002: Fix IWYU in formfiller/ directory. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Tidy. Created 5 years, 8 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 | « no previous file | fpdfsdk/include/formfiller/FFL_CheckBox.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 _RAO_FONTMAP_H_ 7 #ifndef _RAO_FONTMAP_H_
8 #define _RAO_FONTMAP_H_ 8 #define _RAO_FONTMAP_H_
9 9
10 #if _MSC_VER > 1000 10 #include "../pdfwindow/PWL_FontMap.h"
11 #pragma once
12 #endif // _MSC_VER > 1000
13 11
12 class CPDF_Dictionary;
14 class CPDFSDK_Annot; 13 class CPDFSDK_Annot;
15 14
16 class CBA_FontMap : public CPWL_FontMap 15 class CBA_FontMap : public CPWL_FontMap
17 { 16 {
18 public: 17 public:
19 CBA_FontMap(CPDFSDK_Annot* pAnnot, IFX_SystemHandler* pSystemHandler); 18 CBA_FontMap(CPDFSDK_Annot* pAnnot, IFX_SystemHandler* pSystemHandler);
20 CBA_FontMap(CPDF_Document* pDocument, CPDF_Dictionary* pAnnotDict, IFX_S ystemHandler* pSystemHandler); 19 CBA_FontMap(CPDF_Document* pDocument, CPDF_Dictionary* pAnnotDict, IFX_S ystemHandler* pSystemHandler);
21 20
22 virtual ~CBA_FontMap(); 21 virtual ~CBA_FontMap();
23 22
(...skipping 18 matching lines...) Expand all
42 private: 41 private:
43 CPDF_Document* m_pDocument; 42 CPDF_Document* m_pDocument;
44 CPDF_Dictionary* m_pAnnotDict; 43 CPDF_Dictionary* m_pAnnotDict;
45 CPDF_Font* m_pDefaultFont; 44 CPDF_Font* m_pDefaultFont;
46 CFX_ByteString m_sDefaultFontName; 45 CFX_ByteString m_sDefaultFontName;
47 46
48 CFX_ByteString m_sAPType; 47 CFX_ByteString m_sAPType;
49 }; 48 };
50 49
51 #endif // _RAO_FONTMAP_H_ 50 #endif // _RAO_FONTMAP_H_
OLDNEW
« no previous file with comments | « no previous file | fpdfsdk/include/formfiller/FFL_CheckBox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698