diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-05-09 12:36:41 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-05-09 17:50:54 +0000 |
commit | ae4656edebaea24d18d11a845c663240bf8e9d2d (patch) | |
tree | 51bcfc9916a1e13ca080f76a4cf65b21fa647993 /fpdfsdk/fsdk_filewriteadapter.cpp | |
parent | a0b1954794b7a8a279ba00787628cc7f8d1419d9 (diff) | |
download | pdfium-ae4656edebaea24d18d11a845c663240bf8e9d2d.tar.xz |
Move FPDF_FILEWRITE adapter to own file
This Cl moves the adapater out of the fpdfsave.cpp file into its own
h/cpp files. The adapter was renamed for clarity. The CPDF_Creator was
modified to take the adapter as a constructor param and the Create
methods consolidated.
Change-Id: Icb104f195ef532dda053c859aae356a8d4a7a54c
Reviewed-on: https://pdfium-review.googlesource.com/5151
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fpdfsdk/fsdk_filewriteadapter.cpp')
-rw-r--r-- | fpdfsdk/fsdk_filewriteadapter.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/fpdfsdk/fsdk_filewriteadapter.cpp b/fpdfsdk/fsdk_filewriteadapter.cpp new file mode 100644 index 0000000000..98ca3af574 --- /dev/null +++ b/fpdfsdk/fsdk_filewriteadapter.cpp @@ -0,0 +1,18 @@ +// Copyright 2017 PDFium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com + +#include "fpdfsdk/fsdk_filewriteadapter.h" + +FSDK_FileWriteAdapter::FSDK_FileWriteAdapter(FPDF_FILEWRITE* fileWriteStruct) + : fileWriteStruct_(fileWriteStruct) { + ASSERT(fileWriteStruct_); +} + +FSDK_FileWriteAdapter::~FSDK_FileWriteAdapter() {} + +bool FSDK_FileWriteAdapter::WriteBlock(const void* data, size_t size) { + return fileWriteStruct_->WriteBlock(fileWriteStruct_, data, size) != 0; +} |