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

Unified Diff: components/printing/service/public/interfaces/pdf_compositor.mojom

Issue 2832633002: Add PDF compositor service (Closed)
Patch Set: rebase more 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
Index: components/printing/service/public/interfaces/pdf_compositor.mojom
diff --git a/components/printing/service/public/interfaces/pdf_compositor.mojom b/components/printing/service/public/interfaces/pdf_compositor.mojom
new file mode 100644
index 0000000000000000000000000000000000000000..4bf80c4d08531438ffadbb352b8920993bab7d3b
--- /dev/null
+++ b/components/printing/service/public/interfaces/pdf_compositor.mojom
@@ -0,0 +1,17 @@
+// 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.
+
+module printing.mojom;
+
+const string kServiceName = "pdf_compositor";
+
+// TODO(weili): Add support for printing frames from different processes.
+// Currently directly convert passed in page data to a PDF file.
+interface PdfCompositor {
+ // Composite content from one or more subframes, and convert into a PDF file.
dcheng 2017/05/10 07:36:48 This comment doesn't seem entirely accurate at the
Wei Li 2017/05/11 16:53:02 Updated.
+ // |sk_handle| points to a buffer of a Skia MultiPictureDocument.
+ // |pdf_handle| points to the generated PDF file buffer.
+ CompositePdf(handle<shared_buffer> sk_handle)
+ => (handle<shared_buffer> pdf_handle);
dcheng 2017/05/10 07:36:48 Realistically, how large do we expect these buffer
Wei Li 2017/05/11 16:53:02 For web pages, skia document buffer is smaller tha
+};

Powered by Google App Engine
This is Rietveld 408576698