| OLD | NEW |
| 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/core/fwl_targetimp.h" | 7 #include "xfa/fwl/core/fwl_targetimp.h" |
| 8 | 8 |
| 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 } |
| (...skipping 17 matching lines...) Expand all Loading... |
| 35 } | 35 } |
| 36 FX_BOOL CFWL_TargetImp::IsInstance(const CFX_WideStringC& wsClass) const { | 36 FX_BOOL CFWL_TargetImp::IsInstance(const CFX_WideStringC& wsClass) const { |
| 37 return FALSE; | 37 return FALSE; |
| 38 } | 38 } |
| 39 FWL_ERR CFWL_TargetImp::Initialize() { | 39 FWL_ERR CFWL_TargetImp::Initialize() { |
| 40 return FWL_ERR_Succeeded; | 40 return FWL_ERR_Succeeded; |
| 41 } | 41 } |
| 42 FWL_ERR CFWL_TargetImp::Finalize() { | 42 FWL_ERR CFWL_TargetImp::Finalize() { |
| 43 return FWL_ERR_Succeeded; | 43 return FWL_ERR_Succeeded; |
| 44 } | 44 } |
| OLD | NEW |