summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorthestig <thestig@chromium.org>2014-11-17 17:02:40 -0800
committerCommit bot <commit-bot@chromium.org>2014-11-18 01:03:02 +0000
commit1de47c7dc023e612aa55d4576e1092d40fd04801 (patch)
tree87874ce227e96c74f4e97bae79136ebeae126e99
parentedf5a93c4b9b3a5a2b318f9c1973e9d8ff2c768a (diff)
downloadchromium_src-1de47c7dc023e612aa55d4576e1092d40fd04801.zip
chromium_src-1de47c7dc023e612aa55d4576e1092d40fd04801.tar.gz
chromium_src-1de47c7dc023e612aa55d4576e1092d40fd04801.tar.bz2
PDF: Correct typo in form fill environment functions
Rolls PDF to 1dc4f4112d72c63e465d6f09695ebea1119d39a6. This brings in: 1dc4f411: Rename functions in test code also 2c021e02: Correct typo in form fill environment functions 893fe94f: Remove FX_LPCWSTR cast to wchar_t* literals d66fda28: Change from 'this' to L'this' and remove the cast Original CL: https://codereview.chromium.org/711553003/ Original Author: bo_xu@foxitsoftware.com Review URL: https://codereview.chromium.org/738543002 Cr-Commit-Position: refs/heads/master@{#304530}
-rw-r--r--DEPS2
-rw-r--r--pdf/pdfium/pdfium_engine.cc4
2 files changed, 3 insertions, 3 deletions
diff --git a/DEPS b/DEPS
index 0a69095..5c6a017 100644
--- a/DEPS
+++ b/DEPS
@@ -68,7 +68,7 @@ vars = {
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling PDFium
# and whatever else without interference from each other.
- 'pdfium_revision': '56ba90c35c31c77be3f3249fcf2ecf26f6efc62f',
+ 'pdfium_revision': '1dc4f4112d72c63e465d6f09695ebea1119d39a6',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling openmax_dl
# and whatever else without interference from each other.
diff --git a/pdf/pdfium/pdfium_engine.cc b/pdf/pdfium/pdfium_engine.cc
index e0aefcb..1871238 100644
--- a/pdf/pdfium/pdfium_engine.cc
+++ b/pdf/pdfium/pdfium_engine.cc
@@ -655,7 +655,7 @@ PDFiumEngine::~PDFiumEngine() {
}
FPDF_CloseDocument(doc_);
if (form_) {
- FPDFDOC_ExitFormFillEnviroument(form_);
+ FPDFDOC_ExitFormFillEnvironment(form_);
}
}
@@ -2540,7 +2540,7 @@ void PDFiumEngine::ContinueLoadingDocument(
return;
}
- form_ = FPDFDOC_InitFormFillEnviroument(
+ form_ = FPDFDOC_InitFormFillEnvironment(
doc_, static_cast<FPDF_FORMFILLINFO*>(this));
#ifdef PDF_USE_XFA
FPDF_LoadXFA(doc_);