fune/toolkit/components/printingui/ipc/PPrintProgressDialog.ipdl
Mantaroh Yoshinaga 1d68bd8139 Bug 1409971 - Part 1. Add cancelling print job interface to PPrintProgressDialog. r=mconley
This patch will add empty ipc interface in order to notify cancelling print job.

MozReview-Commit-ID: KqBN5A4ARSd

--HG--
extra : rebase_source : 634ba69269948a0f8c6363fd6f965ffc6811225b
2017-11-15 16:29:45 +09:00

36 lines
901 B
Text

/* -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 8 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
include protocol PPrinting;
namespace mozilla {
namespace embedding {
protocol PPrintProgressDialog
{
manager PPrinting;
parent:
async StateChange(long stateFlags,
nsresult status);
async ProgressChange(long curSelfProgress,
long maxSelfProgress,
long curTotalProgress,
long maxTotalProgress);
async DocTitleChange(nsString newTitle);
async DocURLChange(nsString newURL);
async __delete__();
child:
async DialogOpened();
async CancelledCurrentJob();
};
} // namespace embedding
} // namespace mozilla