summaryrefslogtreecommitdiff
path: root/fpdfsdk/cpdfsdk_environment.cpp
diff options
context:
space:
mode:
authordsinclair <dsinclair@chromium.org>2016-09-21 12:07:00 -0700
committerCommit bot <commit-bot@chromium.org>2016-09-21 12:07:00 -0700
commitb94d7c9216160269d43a722b8e216790ba4b5d3b (patch)
treeea626b19bbb8b58be82691c4a69c10715edfe6f4 /fpdfsdk/cpdfsdk_environment.cpp
parent0b2a9874bddf44b4226fcbafa9ce159a9b3735a8 (diff)
downloadpdfium-b94d7c9216160269d43a722b8e216790ba4b5d3b.tar.xz
Make the I in IFormFiller explicit
Typically the I prefix means Interface, except for CFFL_IFormFiller where it means Interactive. Rename CFFL_IFormFiller to CFFL_InteractiveFormFiller to make the meaning explicit. Review-Url: https://codereview.chromium.org/2357203003
Diffstat (limited to 'fpdfsdk/cpdfsdk_environment.cpp')
-rw-r--r--fpdfsdk/cpdfsdk_environment.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/fpdfsdk/cpdfsdk_environment.cpp b/fpdfsdk/cpdfsdk_environment.cpp
index 12ef66997b..21549bc1ab 100644
--- a/fpdfsdk/cpdfsdk_environment.cpp
+++ b/fpdfsdk/cpdfsdk_environment.cpp
@@ -6,7 +6,7 @@
#include "fpdfsdk/include/cpdfsdk_environment.h"
-#include "fpdfsdk/formfiller/cffl_iformfiller.h"
+#include "fpdfsdk/formfiller/cffl_interactiveformfiller.h"
#include "fpdfsdk/include/cpdfsdk_annothandlermgr.h"
#include "fpdfsdk/include/fsdk_actionhandler.h"
#include "fpdfsdk/javascript/ijs_runtime.h"
@@ -207,8 +207,8 @@ CPDFSDK_ActionHandler* CPDFSDK_Environment::GetActionHander() {
return m_pActionHandler.get();
}
-CFFL_IFormFiller* CPDFSDK_Environment::GetIFormFiller() {
- if (!m_pIFormFiller)
- m_pIFormFiller.reset(new CFFL_IFormFiller(this));
- return m_pIFormFiller.get();
+CFFL_InteractiveFormFiller* CPDFSDK_Environment::GetInteractiveFormFiller() {
+ if (!m_pFormFiller)
+ m_pFormFiller.reset(new CFFL_InteractiveFormFiller(this));
+ return m_pFormFiller.get();
}