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

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

Issue 1810563002: Move xfa/include/fxgraphics/fx_graphics.h to xfa/fxgraphics. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 9 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/fxfa/app/xfa_fwltheme.cpp ('k') | xfa/fxgraphics/cagg_graphics.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 #include "xfa/fxfa/app/xfa_rendercontext.h" 7 #include "xfa/fxfa/app/xfa_rendercontext.h"
8 8
9 #include "xfa/fxfa/app/xfa_ffwidget.h" 9 #include "xfa/fxfa/app/xfa_ffwidget.h"
10 #include "xfa/include/fxgraphics/fx_graphics.h" 10 #include "xfa/fxgraphics/include/cfx_graphics.h"
11 11
12 #define XFA_RENDERCONTEXT_MaxCount 30 12 #define XFA_RENDERCONTEXT_MaxCount 30
13 13
14 IXFA_RenderContext* XFA_RenderContext_Create() { 14 IXFA_RenderContext* XFA_RenderContext_Create() {
15 return new CXFA_RenderContext; 15 return new CXFA_RenderContext;
16 } 16 }
17 CXFA_RenderContext::CXFA_RenderContext() { 17 CXFA_RenderContext::CXFA_RenderContext() {
18 m_pWidgetIterator = NULL; 18 m_pWidgetIterator = NULL;
19 m_pWidget = NULL; 19 m_pWidget = NULL;
20 m_pPageView = NULL; 20 m_pPageView = NULL;
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 } 68 }
69 } 69 }
70 return XFA_RENDERSTATUS_Done; 70 return XFA_RENDERSTATUS_Done;
71 } 71 }
72 void CXFA_RenderContext::StopRender() { 72 void CXFA_RenderContext::StopRender() {
73 if (m_pWidgetIterator) { 73 if (m_pWidgetIterator) {
74 m_pWidgetIterator->Release(); 74 m_pWidgetIterator->Release();
75 m_pWidgetIterator = NULL; 75 m_pWidgetIterator = NULL;
76 } 76 }
77 } 77 }
OLDNEW
« no previous file with comments | « xfa/fxfa/app/xfa_fwltheme.cpp ('k') | xfa/fxgraphics/cagg_graphics.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698