blob: 0e3ad8a01444c383fc10a978cb4a83945c10e9d7 [file] [log] [blame]
halcanary8ee06f22015-08-11 10:30:12 -07001/*
2 * Copyright 2015 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7#include "SkDocument.h"
halcanary4b656662016-04-27 07:45:18 -07008sk_sp<SkDocument> SkDocument::MakePDF(SkWStream*,
9 SkScalar,
10 const SkDocument::PDFMetadata&,
halcanaryf8e8d5e2016-04-27 10:57:52 -070011 sk_sp<SkPixelSerializer>,
halcanary4b656662016-04-27 07:45:18 -070012 bool) {
13 return nullptr;
14}
15sk_sp<SkDocument> SkDocument::MakePDF(const char path[], SkScalar) {
16 return nullptr;
17}