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

Side by Side Diff: services/pdf_compositor/public/interfaces/pdf_compositor.mojom

Issue 2653963002: [Experimental] Supporting OOPIF printing
Patch Set: Rename service, fix for webview, and connect to DiscardableMemoryManager Created 3 years, 8 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
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 pdf_compositor.mojom;
6
7 interface PdfCompositor {
8 // Add the dependency on a subframe.
9 PrepareSubframe(int32 subframeId, int32 pageNum);
10
11 // Add a subframe content for composition.
12 AddSubFrameContent(int32 subframeId, handle<shared_buffer> sk_handle);
13
14 // Query whether all subframe data are ready.
15 IsReadyToComposite(int32 pageNum) => (bool status);
16
17 // Composite content from one or more subframes, and convert into a PDF file.
18 CompositePdf(handle<shared_buffer> sk_handle)
19 => (handle<shared_buffer> pdf_handle);
20 };
OLDNEW
« no previous file with comments | « services/pdf_compositor/public/interfaces/constants.mojom ('k') | services/service_manager/manifest.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698