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

Side by Side Diff: xfa/src/fwl/src/basewidget/fwl_pictureboximp.cpp

Issue 1746053003: Remove foxitlib.h and foxitxfa.h and IWYU. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Review cleanup 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
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/src/fwl/src/basewidget/include/fwl_pictureboximp.h" 7 #include "xfa/src/fwl/src/basewidget/include/fwl_pictureboximp.h"
8 8
9 #include "xfa/include/fwl/lightwidget/picturebox.h" 9 #include "xfa/include/fwl/lightwidget/picturebox.h"
10 #include "xfa/src/foxitlib.h"
11 #include "xfa/src/fwl/src/core/include/fwl_noteimp.h" 10 #include "xfa/src/fwl/src/core/include/fwl_noteimp.h"
12 #include "xfa/src/fwl/src/core/include/fwl_targetimp.h" 11 #include "xfa/src/fwl/src/core/include/fwl_targetimp.h"
13 #include "xfa/src/fwl/src/core/include/fwl_widgetimp.h" 12 #include "xfa/src/fwl/src/core/include/fwl_widgetimp.h"
14 13
15 // static 14 // static
16 IFWL_PictureBox* IFWL_PictureBox::Create( 15 IFWL_PictureBox* IFWL_PictureBox::Create(
17 const CFWL_WidgetImpProperties& properties, 16 const CFWL_WidgetImpProperties& properties,
18 IFWL_Widget* pOuter) { 17 IFWL_Widget* pOuter) {
19 IFWL_PictureBox* pPictureBox = new IFWL_PictureBox; 18 IFWL_PictureBox* pPictureBox = new IFWL_PictureBox;
20 CFWL_PictureBoxImp* pPictureBoxImpl = 19 CFWL_PictureBoxImp* pPictureBoxImpl =
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 } 142 }
144 return FALSE; 143 return FALSE;
145 } 144 }
146 CFWL_PictureBoxImpDelegate::CFWL_PictureBoxImpDelegate( 145 CFWL_PictureBoxImpDelegate::CFWL_PictureBoxImpDelegate(
147 CFWL_PictureBoxImp* pOwner) 146 CFWL_PictureBoxImp* pOwner)
148 : m_pOwner(pOwner) {} 147 : m_pOwner(pOwner) {}
149 FWL_ERR CFWL_PictureBoxImpDelegate::OnDrawWidget(CFX_Graphics* pGraphics, 148 FWL_ERR CFWL_PictureBoxImpDelegate::OnDrawWidget(CFX_Graphics* pGraphics,
150 const CFX_Matrix* pMatrix) { 149 const CFX_Matrix* pMatrix) {
151 return m_pOwner->DrawWidget(pGraphics, pMatrix); 150 return m_pOwner->DrawWidget(pGraphics, pMatrix);
152 } 151 }
OLDNEW
« no previous file with comments | « xfa/src/fwl/src/basewidget/fwl_monthcalendarimp.cpp ('k') | xfa/src/fwl/src/basewidget/fwl_pushbuttonimp.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698