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

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

Issue 2392773003: Move core/fpdfapi/fpdf_font to core/fpdfapi/font (Closed)
Patch Set: Created 4 years, 2 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/cpdf_document.h" 7 #include "core/fpdfapi/fpdf_parser/cpdf_document.h"
8 8
9 #include <memory> 9 #include <memory>
10 #include <set> 10 #include <set>
11 #include <vector> 11 #include <vector>
12 12
13 #include "core/fpdfapi/cpdf_modulemgr.h" 13 #include "core/fpdfapi/cpdf_modulemgr.h"
14 #include "core/fpdfapi/fpdf_font/cpdf_fontencoding.h" 14 #include "core/fpdfapi/font/cpdf_fontencoding.h"
15 #include "core/fpdfapi/fpdf_page/cpdf_pagemodule.h" 15 #include "core/fpdfapi/fpdf_page/cpdf_pagemodule.h"
16 #include "core/fpdfapi/fpdf_page/pageint.h" 16 #include "core/fpdfapi/fpdf_page/pageint.h"
17 #include "core/fpdfapi/fpdf_parser/cpdf_array.h" 17 #include "core/fpdfapi/fpdf_parser/cpdf_array.h"
18 #include "core/fpdfapi/fpdf_parser/cpdf_dictionary.h" 18 #include "core/fpdfapi/fpdf_parser/cpdf_dictionary.h"
19 #include "core/fpdfapi/fpdf_parser/cpdf_parser.h" 19 #include "core/fpdfapi/fpdf_parser/cpdf_parser.h"
20 #include "core/fpdfapi/fpdf_parser/cpdf_reference.h" 20 #include "core/fpdfapi/fpdf_parser/cpdf_reference.h"
21 #include "core/fpdfapi/fpdf_parser/cpdf_stream.h" 21 #include "core/fpdfapi/fpdf_parser/cpdf_stream.h"
22 #include "core/fpdfapi/fpdf_render/render_int.h" 22 #include "core/fpdfapi/fpdf_render/render_int.h"
23 #include "core/fxcodec/JBig2_DocumentContext.h" 23 #include "core/fxcodec/JBig2_DocumentContext.h"
24 #include "core/fxge/cfx_unicodeencoding.h" 24 #include "core/fxge/cfx_unicodeencoding.h"
(...skipping 986 matching lines...) Expand 10 before | Expand all | Expand 10 after
1011 pBBox, pLogFont->lfWeight / 5); 1011 pBBox, pLogFont->lfWeight / 5);
1012 pFontDesc->SetIntegerFor("CapHeight", capheight); 1012 pFontDesc->SetIntegerFor("CapHeight", capheight);
1013 pFontDict->SetReferenceFor("FontDescriptor", this, 1013 pFontDict->SetReferenceFor("FontDescriptor", this,
1014 AddIndirectObject(pFontDesc)); 1014 AddIndirectObject(pFontDesc));
1015 hFont = SelectObject(hDC, hFont); 1015 hFont = SelectObject(hDC, hFont);
1016 DeleteObject(hFont); 1016 DeleteObject(hFont);
1017 DeleteDC(hDC); 1017 DeleteDC(hDC);
1018 return LoadFont(pBaseDict); 1018 return LoadFont(pBaseDict);
1019 } 1019 }
1020 #endif // _FXM_PLATFORM_ == _FXM_PLATFORM_WINDOWS_ 1020 #endif // _FXM_PLATFORM_ == _FXM_PLATFORM_WINDOWS_
OLDNEW
« no previous file with comments | « core/fpdfapi/fpdf_page/fpdf_page_parser_old.cpp ('k') | core/fpdfapi/fpdf_render/cpdf_type3cache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698