michael@0: /* -*- Mode: IDL; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- michael@0: * michael@0: * This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #include "nsISupports.idl" michael@0: michael@0: interface nsIContentViewer; michael@0: michael@0: [scriptable, uuid(ea2ce7a0-5c3d-11d4-90c2-0050041caf44)] michael@0: interface nsIContentViewerContainer : nsISupports { michael@0: void embed(in nsIContentViewer aDocViewer, in string aCommand, in nsISupports aExtraInfo); michael@0: michael@0: /** michael@0: * Allows the PrintEngine to make this call on michael@0: * an internal interface to the DocShell michael@0: */ michael@0: void setIsPrinting(in boolean aIsPrinting); michael@0: };