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

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

Issue 1570743002: XFA: Remove many relative includes in xfa/ (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: Created 4 years, 11 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 "../../../foxitlib.h" 7 #include "xfa/src/foxitlib.h"
8 #include "../common/xfa_common.h" 8 #include "xfa/src/fxfa/src/common/xfa_common.h"
9 #include "xfa_ffwidget.h" 9 #include "xfa_ffwidget.h"
10 #include "xfa_ffdoc.h" 10 #include "xfa_ffdoc.h"
11 #include "xfa_ffdocview.h" 11 #include "xfa_ffdocview.h"
12 #include "xfa_ffpageview.h" 12 #include "xfa_ffpageview.h"
13 #include "xfa_ffapp.h" 13 #include "xfa_ffapp.h"
14 #include "xfa_textlayout.h" 14 #include "xfa_textlayout.h"
15 #include "xfa_fwladapter.h" 15 #include "xfa_fwladapter.h"
16 #include "xfa_fffield.h" 16 #include "xfa_fffield.h"
17 #include "xfa_ffchoicelist.h" 17 #include "xfa_ffchoicelist.h"
18 #include "xfa_ffcheckbutton.h" 18 #include "xfa_ffcheckbutton.h"
(...skipping 1688 matching lines...) Expand 10 before | Expand all | Expand 10 after
1707 if (pIDNode) { 1707 if (pIDNode) {
1708 pEmbAcc = (CXFA_WidgetAcc*)pIDNode->GetWidgetData(); 1708 pEmbAcc = (CXFA_WidgetAcc*)pIDNode->GetWidgetData();
1709 } 1709 }
1710 if (pEmbAcc) { 1710 if (pEmbAcc) {
1711 pEmbAcc->GetValue(wsValue, XFA_VALUEPICTURE_Display); 1711 pEmbAcc->GetValue(wsValue, XFA_VALUEPICTURE_Display);
1712 return TRUE; 1712 return TRUE;
1713 } 1713 }
1714 } 1714 }
1715 return FALSE; 1715 return FALSE;
1716 } 1716 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698