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

Side by Side Diff: xfa/src/fwl/src/core/fwl_targetimp.cpp

Issue 1570743002: XFA: Remove many relative includes in xfa/ (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: address some comments 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
« no previous file with comments | « xfa/src/fwl/src/core/fwl_sdadapterimp.cpp ('k') | xfa/src/fwl/src/core/fwl_threadimp.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 "../../../foxitlib.h" 7 #include "xfa/src/foxitlib.h"
8 #include "include/fwl_targetimp.h" 8 #include "xfa/src/fwl/src/core/include/fwl_targetimp.h"
9 FWL_ERR IFWL_Target::GetClassName(CFX_WideString& wsClass) const { 9 FWL_ERR IFWL_Target::GetClassName(CFX_WideString& wsClass) const {
10 return m_pImpl->GetClassName(wsClass); 10 return m_pImpl->GetClassName(wsClass);
11 } 11 }
12 FX_DWORD IFWL_Target::GetClassID() const { 12 FX_DWORD IFWL_Target::GetClassID() const {
13 return m_pImpl->GetClassID(); 13 return m_pImpl->GetClassID();
14 } 14 }
15 FX_BOOL IFWL_Target::IsInstance(const CFX_WideStringC& wsClass) const { 15 FX_BOOL IFWL_Target::IsInstance(const CFX_WideStringC& wsClass) const {
16 return m_pImpl->IsInstance(wsClass); 16 return m_pImpl->IsInstance(wsClass);
17 } 17 }
18 FWL_ERR IFWL_Target::Initialize() { 18 FWL_ERR IFWL_Target::Initialize() {
(...skipping 17 matching lines...) Expand all
36 } 36 }
37 FX_BOOL CFWL_TargetImp::IsInstance(const CFX_WideStringC& wsClass) const { 37 FX_BOOL CFWL_TargetImp::IsInstance(const CFX_WideStringC& wsClass) const {
38 return FALSE; 38 return FALSE;
39 } 39 }
40 FWL_ERR CFWL_TargetImp::Initialize() { 40 FWL_ERR CFWL_TargetImp::Initialize() {
41 return FWL_ERR_Succeeded; 41 return FWL_ERR_Succeeded;
42 } 42 }
43 FWL_ERR CFWL_TargetImp::Finalize() { 43 FWL_ERR CFWL_TargetImp::Finalize() {
44 return FWL_ERR_Succeeded; 44 return FWL_ERR_Succeeded;
45 } 45 }
OLDNEW
« no previous file with comments | « xfa/src/fwl/src/core/fwl_sdadapterimp.cpp ('k') | xfa/src/fwl/src/core/fwl_threadimp.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698