aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/pdf/SkDocument_PDF_None.cpp
blob: 0e3ad8a01444c383fc10a978cb4a83945c10e9d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * Copyright 2015 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */
#include "SkDocument.h"
sk_sp<SkDocument> SkDocument::MakePDF(SkWStream*,
                                      SkScalar,
                                      const SkDocument::PDFMetadata&,
                                      sk_sp<SkPixelSerializer>,
                                      bool) {
    return nullptr;
}
sk_sp<SkDocument> SkDocument::MakePDF(const char path[], SkScalar) {
    return nullptr;
}