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

Side by Side Diff: fpdfsdk/fsdk_baseform.cpp

Issue 2009253003: Clean up fx_ge.h and IWYU. (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: nits Created 4 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
« no previous file with comments | « fpdfsdk/fpdfview.cpp ('k') | fpdfsdk/fsdk_rendercontext.cpp » ('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 #include "fpdfsdk/include/fsdk_baseform.h" 7 #include "fpdfsdk/include/fsdk_baseform.h"
8 8
9 #include <algorithm> 9 #include <algorithm>
10 #include <map> 10 #include <map>
11 #include <memory> 11 #include <memory>
12 #include <vector> 12 #include <vector>
13 13
14 #include "core/fpdfapi/fpdf_page/include/cpdf_page.h" 14 #include "core/fpdfapi/fpdf_page/include/cpdf_page.h"
15 #include "core/fpdfapi/fpdf_parser/include/cfdf_document.h" 15 #include "core/fpdfapi/fpdf_parser/include/cfdf_document.h"
16 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h" 16 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h"
17 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" 17 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h"
18 #include "core/fpdfapi/fpdf_parser/include/cpdf_stream.h" 18 #include "core/fpdfapi/fpdf_parser/include/cpdf_stream.h"
19 #include "core/fxge/include/fx_ge.h"
19 #include "fpdfsdk/formfiller/cffl_formfiller.h" 20 #include "fpdfsdk/formfiller/cffl_formfiller.h"
20 #include "fpdfsdk/include/fsdk_actionhandler.h" 21 #include "fpdfsdk/include/fsdk_actionhandler.h"
21 #include "fpdfsdk/include/fsdk_baseannot.h" 22 #include "fpdfsdk/include/fsdk_baseannot.h"
22 #include "fpdfsdk/include/fsdk_define.h" 23 #include "fpdfsdk/include/fsdk_define.h"
23 #include "fpdfsdk/include/fsdk_mgr.h" 24 #include "fpdfsdk/include/fsdk_mgr.h"
24 #include "fpdfsdk/javascript/ijs_context.h" 25 #include "fpdfsdk/javascript/ijs_context.h"
25 #include "fpdfsdk/javascript/ijs_runtime.h" 26 #include "fpdfsdk/javascript/ijs_runtime.h"
26 #include "fpdfsdk/pdfwindow/PWL_Utils.h" 27 #include "fpdfsdk/pdfwindow/PWL_Utils.h"
27 28
28 #ifdef PDF_ENABLE_XFA 29 #ifdef PDF_ENABLE_XFA
(...skipping 2776 matching lines...) Expand 10 before | Expand all | Expand 10 after
2805 break; 2806 break;
2806 } 2807 }
2807 } 2808 }
2808 } 2809 }
2809 2810
2810 CFX_FloatRect CBA_AnnotIterator::GetAnnotRect(const CPDFSDK_Annot* pAnnot) { 2811 CFX_FloatRect CBA_AnnotIterator::GetAnnotRect(const CPDFSDK_Annot* pAnnot) {
2811 CFX_FloatRect rcAnnot; 2812 CFX_FloatRect rcAnnot;
2812 pAnnot->GetPDFAnnot()->GetRect(rcAnnot); 2813 pAnnot->GetPDFAnnot()->GetRect(rcAnnot);
2813 return rcAnnot; 2814 return rcAnnot;
2814 } 2815 }
OLDNEW
« no previous file with comments | « fpdfsdk/fpdfview.cpp ('k') | fpdfsdk/fsdk_rendercontext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698