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

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

Issue 2071683002: Make code compile with clang_use_chrome_plugin (part V) (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: clean up Created 4 years, 6 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_ffimageedit.h ('k') | xfa/fxfa/app/xfa_ffpath.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/include/xfa_ffpageview.h" 7 #include "xfa/fxfa/include/xfa_ffpageview.h"
8 8
9 #include "xfa/fde/fde_render.h" 9 #include "xfa/fde/fde_render.h"
10 #include "xfa/fxfa/app/xfa_ffcheckbutton.h" 10 #include "xfa/fxfa/app/xfa_ffcheckbutton.h"
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after
425 CXFA_LayoutItem* pLayoutItem) { 425 CXFA_LayoutItem* pLayoutItem) {
426 if (CXFA_FFWidget* pWidget = XFA_GetWidgetFromLayoutItem(pLayoutItem)) { 426 if (CXFA_FFWidget* pWidget = XFA_GetWidgetFromLayoutItem(pLayoutItem)) {
427 if (!pWidget->IsLoaded() && 427 if (!pWidget->IsLoaded() &&
428 (pWidget->GetStatus() & XFA_WidgetStatus_Visible)) { 428 (pWidget->GetStatus() & XFA_WidgetStatus_Visible)) {
429 pWidget->LoadWidget(); 429 pWidget->LoadWidget();
430 } 430 }
431 return pWidget; 431 return pWidget;
432 } 432 }
433 return NULL; 433 return NULL;
434 } 434 }
435
436 CXFA_TabParam::CXFA_TabParam() : m_pWidget(NULL) {}
437
438 CXFA_TabParam::~CXFA_TabParam() {}
OLDNEW
« no previous file with comments | « xfa/fxfa/app/xfa_ffimageedit.h ('k') | xfa/fxfa/app/xfa_ffpath.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698