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

Side by Side Diff: components/printing/service/public/interfaces/pdf_compositor.mojom

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 unified diff | Download patch
« no previous file with comments | « components/printing/service/public/interfaces/OWNERS ('k') | content/child/child_thread_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 module printing.mojom;
6
7 const string kServiceName = "pdf_compositor";
8
9 // TODO(weili): Add support for printing frames from different processes.
10 interface PdfCompositor {
11 // Currently directly convert passed in page data to a PDF file.
12 // |sk_handle| points to a buffer of a Skia MultiPictureDocument.
13 // |pdf_handle| points to the generated PDF file buffer.
14 CompositePdf(handle<shared_buffer> sk_handle)
15 => (handle<shared_buffer> pdf_handle);
16 };
OLDNEW
« no previous file with comments | « components/printing/service/public/interfaces/OWNERS ('k') | content/child/child_thread_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698