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

Unified Diff: fpdfsdk/include/cpdfsdk_widgethandler.h

Issue 2357203003: Make the I in IFormFiller explicit (Closed)
Patch Set: Remove locals Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « fpdfsdk/include/cpdfsdk_environment.h ('k') | xfa/fxfa/parser/cxfa_document.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: fpdfsdk/include/cpdfsdk_widgethandler.h
diff --git a/fpdfsdk/include/cpdfsdk_widgethandler.h b/fpdfsdk/include/cpdfsdk_widgethandler.h
index 432a90bc240693b14f190909776a8fbb3f1e75a7..c5efd21e84da1882e5a77f7966b315cceae19a42 100644
--- a/fpdfsdk/include/cpdfsdk_widgethandler.h
+++ b/fpdfsdk/include/cpdfsdk_widgethandler.h
@@ -11,7 +11,7 @@
#include "core/fxcrt/include/fx_coordinates.h"
#include "fpdfsdk/include/ipdfsdk_annothandler.h"
-class CFFL_IFormFiller;
+class CFFL_InteractiveFormFiller;
class CFX_Matrix;
class CFX_RenderDevice;
class CPDF_Annot;
@@ -103,12 +103,14 @@ class CPDFSDK_WidgetHandler : public IPDFSDK_AnnotHandler {
CPDFSDK_Annot* pNewAnnot) override;
#endif // PDF_ENABLE_XFA
- void SetFormFiller(CFFL_IFormFiller* pFiller) { m_pFormFiller = pFiller; }
- CFFL_IFormFiller* GetFormFiller() { return m_pFormFiller; }
+ void SetFormFiller(CFFL_InteractiveFormFiller* pFiller) {
+ m_pFormFiller = pFiller;
+ }
+ CFFL_InteractiveFormFiller* GetFormFiller() { return m_pFormFiller; }
private:
CPDFSDK_Environment* m_pApp;
- CFFL_IFormFiller* m_pFormFiller;
+ CFFL_InteractiveFormFiller* m_pFormFiller;
};
#endif // FPDFSDK_INCLUDE_CPDFSDK_WIDGETHANDLER_H_
« no previous file with comments | « fpdfsdk/include/cpdfsdk_environment.h ('k') | xfa/fxfa/parser/cxfa_document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698