| OLD | NEW |
| 1 // Copyright 2016 PDFium Authors. All rights reserved. | 1 // Copyright 2016 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/fwl/core/cfwl_message.h" | 7 #include "xfa/fwl/cfwl_message.h" |
| 8 | 8 |
| 9 CFWL_Message::CFWL_Message(CFWL_Message::Type type) | 9 CFWL_Message::CFWL_Message(CFWL_Message::Type type) |
| 10 : CFWL_Message(type, nullptr, nullptr) {} | 10 : CFWL_Message(type, nullptr, nullptr) {} |
| 11 | 11 |
| 12 CFWL_Message::CFWL_Message(Type type, CFWL_Widget* pSrcTarget) | 12 CFWL_Message::CFWL_Message(Type type, CFWL_Widget* pSrcTarget) |
| 13 : CFWL_Message(type, pSrcTarget, nullptr) {} | 13 : CFWL_Message(type, pSrcTarget, nullptr) {} |
| 14 | 14 |
| 15 CFWL_Message::CFWL_Message(Type type, | 15 CFWL_Message::CFWL_Message(Type type, |
| 16 CFWL_Widget* pSrcTarget, | 16 CFWL_Widget* pSrcTarget, |
| 17 CFWL_Widget* pDstTarget) | 17 CFWL_Widget* pDstTarget) |
| 18 : m_pSrcTarget(pSrcTarget), | 18 : m_pSrcTarget(pSrcTarget), m_pDstTarget(pDstTarget), m_type(type) {} |
| 19 m_pDstTarget(pDstTarget), | |
| 20 m_type(type) {} | |
| 21 | 19 |
| 22 CFWL_Message::~CFWL_Message() {} | 20 CFWL_Message::~CFWL_Message() {} |
| 23 | 21 |
| 24 std::unique_ptr<CFWL_Message> CFWL_Message::Clone() { | 22 std::unique_ptr<CFWL_Message> CFWL_Message::Clone() { |
| 25 return nullptr; | 23 return nullptr; |
| 26 } | 24 } |
| OLD | NEW |