/* * Copyright 2010 The Android Open Source Project * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include "src/pdf/SkPDFFormXObject.h" #include "include/core/SkMatrix.h" #include "include/core/SkStream.h" #include "src/pdf/SkPDFUtils.h" #include <utility> SkPDFIndirectReference SkPDFMakeFormXObject(SkPDFDocument* doc, std::unique_ptr<SkStreamAsset> content, std::unique_ptr<SkPDFArray> mediaBox, std::unique_ptr<SkPDFDict> resourceDict, const SkMatrix& inverseTransform, const char* colorSpace) { … }