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

Side by Side Diff: xfa/fxfa/app/xfa_ffwidget.cpp

Issue 2217663002: Refactor fx_ge part 1 (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 4 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 | « xfa/fxbarcode/oned/BC_OnedUPCAWriter.cpp ('k') | xfa/fxfa/parser/xfa_localemgr.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 "xfa/fxfa/include/xfa_ffwidget.h" 7 #include "xfa/fxfa/include/xfa_ffwidget.h"
8 8
9 #include <algorithm> 9 #include <algorithm>
10 #include <memory> 10 #include <memory>
11 11
12 #include "core/fpdfapi/fpdf_page/include/cpdf_pageobjectholder.h" 12 #include "core/fpdfapi/fpdf_page/include/cpdf_pageobjectholder.h"
13 #include "core/fxcodec/codec/include/ccodec_progressivedecoder.h" 13 #include "core/fxcodec/codec/include/ccodec_progressivedecoder.h"
14 #include "core/fxcodec/include/fx_codec.h" 14 #include "core/fxcodec/include/fx_codec.h"
15 #include "core/fxge/include/cfx_gemodule.h"
15 #include "xfa/fxfa/app/xfa_textlayout.h" 16 #include "xfa/fxfa/app/xfa_textlayout.h"
16 #include "xfa/fxfa/include/fxfa_widget.h" 17 #include "xfa/fxfa/include/fxfa_widget.h"
17 #include "xfa/fxfa/include/cxfa_eventparam.h" 18 #include "xfa/fxfa/include/cxfa_eventparam.h"
18 #include "xfa/fxfa/include/xfa_ffapp.h" 19 #include "xfa/fxfa/include/xfa_ffapp.h"
19 #include "xfa/fxfa/include/xfa_ffdoc.h" 20 #include "xfa/fxfa/include/xfa_ffdoc.h"
20 #include "xfa/fxfa/include/xfa_ffdocview.h" 21 #include "xfa/fxfa/include/xfa_ffdocview.h"
21 #include "xfa/fxfa/include/xfa_ffpageview.h" 22 #include "xfa/fxfa/include/xfa_ffpageview.h"
22 #include "xfa/fxfa/parser/cxfa_corner.h" 23 #include "xfa/fxfa/parser/cxfa_corner.h"
23 #include "xfa/fxgraphics/cfx_color.h" 24 #include "xfa/fxgraphics/cfx_color.h"
24 #include "xfa/fxgraphics/cfx_path.h" 25 #include "xfa/fxgraphics/cfx_path.h"
(...skipping 2017 matching lines...) Expand 10 before | Expand all | Expand 10 after
2042 } 2043 }
2043 XFA_BOX_Fill(box, strokes, pGS, rtWidget, pMatrix, dwFlags); 2044 XFA_BOX_Fill(box, strokes, pGS, rtWidget, pMatrix, dwFlags);
2044 XFA_BOX_Stroke(box, strokes, pGS, rtWidget, pMatrix, dwFlags); 2045 XFA_BOX_Stroke(box, strokes, pGS, rtWidget, pMatrix, dwFlags);
2045 } 2046 }
2046 2047
2047 CXFA_CalcData::CXFA_CalcData() : m_iRefCount(0) {} 2048 CXFA_CalcData::CXFA_CalcData() : m_iRefCount(0) {}
2048 2049
2049 CXFA_CalcData::~CXFA_CalcData() { 2050 CXFA_CalcData::~CXFA_CalcData() {
2050 m_Globals.RemoveAll(); 2051 m_Globals.RemoveAll();
2051 } 2052 }
OLDNEW
« no previous file with comments | « xfa/fxbarcode/oned/BC_OnedUPCAWriter.cpp ('k') | xfa/fxfa/parser/xfa_localemgr.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698