diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2018-03-28 18:49:34 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-03-28 18:49:34 +0000 |
commit | 7d12532362545273e0ceac93fae2154661323fd1 (patch) | |
tree | b58002c530a10c6a1e084d0aba0ad9972cd17fc1 /fpdfsdk/fpdfsave.cpp | |
parent | 00d47a60e4cd0974771692a9d3fdd3ca28bf6eb2 (diff) | |
download | pdfium-7d12532362545273e0ceac93fae2154661323fd1.tar.xz |
More fpdfsdk filename cleanup
This CL moves more of the fpdfsdk/ code around to better match the
naming of other files.
Change-Id: I203d91e3e345b2b4767df7a69dd5bd981d61f1d2
Reviewed-on: https://pdfium-review.googlesource.com/29372
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fpdfsdk/fpdfsave.cpp')
-rw-r--r-- | fpdfsdk/fpdfsave.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fpdfsdk/fpdfsave.cpp b/fpdfsdk/fpdfsave.cpp index 2c615f434c..da3e12fc9c 100644 --- a/fpdfsdk/fpdfsave.cpp +++ b/fpdfsdk/fpdfsave.cpp @@ -18,8 +18,8 @@ #include "core/fpdfapi/parser/cpdf_string.h" #include "core/fxcrt/cfx_memorystream.h" #include "core/fxcrt/fx_extension.h" +#include "fpdfsdk/cpdfsdk_filewriteadapter.h" #include "fpdfsdk/cpdfsdk_helpers.h" -#include "fpdfsdk/fsdk_filewriteadapter.h" #include "public/fpdf_edit.h" #ifdef PDF_ENABLE_XFA @@ -254,8 +254,8 @@ bool FPDF_Doc_Save(FPDF_DOCUMENT document, if (flags < FPDF_INCREMENTAL || flags > FPDF_REMOVE_SECURITY) flags = 0; - CPDF_Creator fileMaker(pPDFDoc, - pdfium::MakeRetain<FSDK_FileWriteAdapter>(pFileWrite)); + CPDF_Creator fileMaker( + pPDFDoc, pdfium::MakeRetain<CPDFSDK_FileWriteAdapter>(pFileWrite)); if (bSetVersion) fileMaker.SetFileVersion(fileVerion); if (flags == FPDF_REMOVE_SECURITY) { |