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

Side by Side Diff: xfa/src/fxfa/src/app/xfa_ffchoicelist.cpp

Issue 1733693002: Remove xfa_common.h and IWYU. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Rebase to master 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/src/fxfa/src/app/xfa_ffcheckbutton.cpp ('k') | xfa/src/fxfa/src/app/xfa_ffdoc.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/src/foxitlib.h" 7 #include "xfa/src/foxitlib.h"
8 #include "xfa/src/fxfa/src/app/xfa_ffchoicelist.h" 8 #include "xfa/src/fxfa/src/app/xfa_ffchoicelist.h"
9 #include "xfa/src/fxfa/src/app/xfa_ffdoc.h" 9 #include "xfa/src/fxfa/src/app/xfa_ffdoc.h"
10 #include "xfa/src/fxfa/src/app/xfa_ffdocview.h" 10 #include "xfa/src/fxfa/src/app/xfa_ffdocview.h"
11 #include "xfa/src/fxfa/src/app/xfa_fffield.h" 11 #include "xfa/src/fxfa/src/app/xfa_fffield.h"
12 #include "xfa/src/fxfa/src/app/xfa_ffpageview.h" 12 #include "xfa/src/fxfa/src/app/xfa_ffpageview.h"
13 #include "xfa/src/fxfa/src/app/xfa_ffwidget.h" 13 #include "xfa/src/fxfa/src/app/xfa_ffwidget.h"
14 #include "xfa/src/fxfa/src/app/xfa_fwladapter.h" 14 #include "xfa/src/fxfa/src/app/xfa_fwladapter.h"
15 #include "xfa/src/fxfa/src/common/xfa_common.h" 15
16 CXFA_FFListBox::CXFA_FFListBox(CXFA_FFPageView* pPageView, 16 CXFA_FFListBox::CXFA_FFListBox(CXFA_FFPageView* pPageView,
17 CXFA_WidgetAcc* pDataAcc) 17 CXFA_WidgetAcc* pDataAcc)
18 : CXFA_FFField(pPageView, pDataAcc), m_pOldDelegate(NULL) {} 18 : CXFA_FFField(pPageView, pDataAcc), m_pOldDelegate(NULL) {}
19 CXFA_FFListBox::~CXFA_FFListBox() { 19 CXFA_FFListBox::~CXFA_FFListBox() {
20 if (m_pNormalWidget) { 20 if (m_pNormalWidget) {
21 IFWL_Widget* pWidget = m_pNormalWidget->GetWidget(); 21 IFWL_Widget* pWidget = m_pNormalWidget->GetWidget();
22 IFWL_NoteDriver* pNoteDriver = FWL_GetApp()->GetNoteDriver(); 22 IFWL_NoteDriver* pNoteDriver = FWL_GetApp()->GetNoteDriver();
23 pNoteDriver->UnregisterEventTarget(pWidget); 23 pNoteDriver->UnregisterEventTarget(pWidget);
24 } 24 }
25 } 25 }
(...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after
529 break; 529 break;
530 } 530 }
531 default: {} 531 default: {}
532 } 532 }
533 return m_pOldDelegate->OnProcessEvent(pEvent); 533 return m_pOldDelegate->OnProcessEvent(pEvent);
534 } 534 }
535 FWL_ERR CXFA_FFComboBox::OnDrawWidget(CFX_Graphics* pGraphics, 535 FWL_ERR CXFA_FFComboBox::OnDrawWidget(CFX_Graphics* pGraphics,
536 const CFX_Matrix* pMatrix) { 536 const CFX_Matrix* pMatrix) {
537 return m_pOldDelegate->OnDrawWidget(pGraphics, pMatrix); 537 return m_pOldDelegate->OnDrawWidget(pGraphics, pMatrix);
538 } 538 }
OLDNEW
« no previous file with comments | « xfa/src/fxfa/src/app/xfa_ffcheckbutton.cpp ('k') | xfa/src/fxfa/src/app/xfa_ffdoc.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698