Chromium Code Reviews| 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_FXFA_APP_XFA_FFNOTIFY_H_ | 7 #ifndef XFA_FXFA_APP_XFA_FFNOTIFY_H_ |
| 8 #define XFA_FXFA_APP_XFA_FFNOTIFY_H_ | 8 #define XFA_FXFA_APP_XFA_FFNOTIFY_H_ |
| 9 | 9 |
| 10 #include "xfa/fxfa/parser/xfa_document.h" | 10 #include "xfa/fxfa/parser/xfa_document.h" |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 75 void* pParam4); | 75 void* pParam4); |
| 76 void OnChildAdded(CXFA_Node* pSender, void* pParam, void* pParam2); | 76 void OnChildAdded(CXFA_Node* pSender, void* pParam, void* pParam2); |
| 77 void OnChildRemoved(CXFA_Node* pSender, void* pParam, void* pParam2); | 77 void OnChildRemoved(CXFA_Node* pSender, void* pParam, void* pParam2); |
| 78 void OnLayoutItemAdd(CXFA_FFDocView* pDocView, | 78 void OnLayoutItemAdd(CXFA_FFDocView* pDocView, |
| 79 CXFA_LayoutProcessor* pLayout, | 79 CXFA_LayoutProcessor* pLayout, |
| 80 CXFA_LayoutItem* pSender, | 80 CXFA_LayoutItem* pSender, |
| 81 void* pParam, | 81 void* pParam, |
| 82 void* pParam2); | 82 void* pParam2); |
| 83 void OnLayoutItemRemoving(CXFA_FFDocView* pDocView, | 83 void OnLayoutItemRemoving(CXFA_FFDocView* pDocView, |
| 84 CXFA_LayoutProcessor* pLayout, | 84 CXFA_LayoutProcessor* pLayout, |
| 85 CXFA_LayoutItem* pSender, | 85 CXFA_LayoutItem* pSender); |
| 86 void* pParam, | 86 CXFA_FFDoc* const m_pDoc; |
|
Tom Sepez
2016/04/14 22:45:43
nit: blank line between methods and members.
Lei Zhang
2016/04/15 01:16:40
All the methods have become public by patch set 10
| |
| 87 void* pParam2); | |
| 88 void OnLayoutItemRectChanged(CXFA_FFDocView* pDocView, | |
| 89 CXFA_LayoutProcessor* pLayout, | |
| 90 CXFA_LayoutItem* pSender, | |
| 91 void* pParam, | |
| 92 void* pParam2); | |
| 93 void OnLayoutItemStatustChanged(CXFA_FFDocView* pDocView, | |
| 94 CXFA_LayoutProcessor* pLayout, | |
| 95 CXFA_LayoutItem* pSender, | |
| 96 void* pParam, | |
| 97 void* pParam2); | |
| 98 CXFA_FFDoc* m_pDoc; | |
| 99 }; | 87 }; |
| 100 | 88 |
| 101 #endif // XFA_FXFA_APP_XFA_FFNOTIFY_H_ | 89 #endif // XFA_FXFA_APP_XFA_FFNOTIFY_H_ |
| OLD | NEW |