Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(289)

Unified Diff: printing/common/pdf_metafile_utils.h

Issue 2832633002: Add PDF compositor service (Closed)
Patch Set: rebase Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « printing/common/BUILD.gn ('k') | printing/common/pdf_metafile_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: printing/common/pdf_metafile_utils.h
diff --git a/printing/common/pdf_metafile_utils.h b/printing/common/pdf_metafile_utils.h
new file mode 100644
index 0000000000000000000000000000000000000000..78d2b530f31cbd42506502261459c49ffcd499df
--- /dev/null
+++ b/printing/common/pdf_metafile_utils.h
@@ -0,0 +1,28 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef PRINTING_COMMON_PDF_METAFILE_UTILS_H_
+#define PRINTING_COMMON_PDF_METAFILE_UTILS_H_
+
+#include <string>
+
+#include "skia/ext/platform_canvas.h"
+#include "third_party/skia/include/core/SkDocument.h"
+#include "third_party/skia/include/core/SkRefCnt.h"
+#include "third_party/skia/include/core/SkStream.h"
+
+namespace printing {
+
+enum SkiaDocumentType {
+ PDF_SKIA_DOCUMENT_TYPE,
+ // MSKP is an experimental, fragile, and diagnostic-only document type.
+ MSKP_SKIA_DOCUMENT_TYPE,
+};
+
+sk_sp<SkDocument> MakePdfDocument(const std::string& creator,
+ SkWStream* stream);
+
+} // namespace printing
+
+#endif // PRINTING_COMMON_PDF_METAFILE_UTILS_H_
« no previous file with comments | « printing/common/BUILD.gn ('k') | printing/common/pdf_metafile_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698