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 #ifndef XFA_FWL_CORE_FWL_NOTEIMP_H_ | 7 #ifndef XFA_FWL_CORE_FWL_NOTEIMP_H_ |
8 #define XFA_FWL_CORE_FWL_NOTEIMP_H_ | 8 #define XFA_FWL_CORE_FWL_NOTEIMP_H_ |
9 | 9 |
10 #include <memory> | 10 #include <memory> |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 | 129 |
130 class CFWL_ToolTipContainer final { | 130 class CFWL_ToolTipContainer final { |
131 public: | 131 public: |
132 static CFWL_ToolTipContainer* getInstance(); | 132 static CFWL_ToolTipContainer* getInstance(); |
133 static void DeleteInstance(); | 133 static void DeleteInstance(); |
134 | 134 |
135 protected: | 135 protected: |
136 CFWL_ToolTipContainer(); | 136 CFWL_ToolTipContainer(); |
137 ~CFWL_ToolTipContainer(); | 137 ~CFWL_ToolTipContainer(); |
138 | 138 |
139 IFWL_ToolTip* m_pToolTipImp; | |
140 std::unique_ptr<CFWL_CoreToolTipDP> m_pToolTipDp; | 139 std::unique_ptr<CFWL_CoreToolTipDP> m_pToolTipDp; |
141 | 140 |
142 private: | 141 private: |
143 static CFWL_ToolTipContainer* s_pInstance; | 142 static CFWL_ToolTipContainer* s_pInstance; |
144 }; | 143 }; |
145 | 144 |
146 #endif // XFA_FWL_CORE_FWL_NOTEIMP_H_ | 145 #endif // XFA_FWL_CORE_FWL_NOTEIMP_H_ |
OLD | NEW |