Chromium Code Reviews| Index: fpdfsdk/cpdfsdk_formfillenvironment.h |
| diff --git a/fpdfsdk/cpdfsdk_environment.h b/fpdfsdk/cpdfsdk_formfillenvironment.h |
| similarity index 94% |
| rename from fpdfsdk/cpdfsdk_environment.h |
| rename to fpdfsdk/cpdfsdk_formfillenvironment.h |
| index bed757c2ba5322acdefcce0f2a19c3691edbad6e..b2e2e648c853060ad6477509098b3e9b0cf9585f 100644 |
| --- a/fpdfsdk/cpdfsdk_environment.h |
| +++ b/fpdfsdk/cpdfsdk_formfillenvironment.h |
| @@ -4,8 +4,8 @@ |
| // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| -#ifndef FPDFSDK_CPDFSDK_ENVIRONMENT_H_ |
| -#define FPDFSDK_CPDFSDK_ENVIRONMENT_H_ |
| +#ifndef FPDFSDK_CPDFSDK_FORMFILLENVIRONMENT_H_ |
| +#define FPDFSDK_CPDFSDK_FORMFILLENVIRONMENT_H_ |
| #include <memory> |
| @@ -25,10 +25,11 @@ class CPDFSDK_AnnotHandlerMgr; |
| class CPDFSDK_Document; |
| class IJS_Runtime; |
| -class CPDFSDK_Environment final { |
| +class CPDFSDK_FormfillEnvironment final { |
|
Tom Sepez
2016/10/05 16:38:18
nit: FormFillEnvironment to be consistent with oth
dsinclair
2016/10/05 17:59:21
Done.
|
| public: |
| - CPDFSDK_Environment(UnderlyingDocumentType* pDoc, FPDF_FORMFILLINFO* pFFinfo); |
| - ~CPDFSDK_Environment(); |
| + CPDFSDK_FormfillEnvironment(UnderlyingDocumentType* pDoc, |
| + FPDF_FORMFILLINFO* pFFinfo); |
| + ~CPDFSDK_FormfillEnvironment(); |
| void Invalidate(FPDF_PAGE page, |
| double left, |
| @@ -171,4 +172,4 @@ class CPDFSDK_Environment final { |
| std::unique_ptr<CFX_SystemHandler> m_pSysHandler; |
| }; |
| -#endif // FPDFSDK_CPDFSDK_ENVIRONMENT_H_ |
| +#endif // FPDFSDK_CPDFSDK_FORMFILLENVIRONMENT_H_ |