michael@0: /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ 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 "nsIChannel.idl" michael@0: michael@0: [uuid(0073d67c-a64f-4f45-8f36-02cd0abfeca1)] michael@0: interface nsIViewSourceChannel : nsIChannel michael@0: { michael@0: /** michael@0: * The actual (MIME) content type of the data. michael@0: * michael@0: * nsIViewSourceChannel returns a content type of michael@0: * "application/x-view-source" if you ask it for the contentType michael@0: * attribute. michael@0: * michael@0: * However, callers interested in finding out or setting the michael@0: * actual content type can utilize this attribute. michael@0: */ michael@0: attribute ACString originalContentType; michael@0: michael@0: /** michael@0: * Whether the channel was created to view the source of a srcdoc document. michael@0: */ michael@0: readonly attribute boolean isSrcdocChannel; michael@0: michael@0: /** michael@0: * Set to indicate the base URI. If this channel is a srcdoc channel, it michael@0: * returns the base URI provided by the embedded channel. It is used to michael@0: * provide an indication of the base URI in circumstances where it isn't michael@0: * otherwise recoverable. Returns null when it isn't set and isn't a michael@0: * srcdoc channel. michael@0: */ michael@0: attribute nsIURI baseURI; michael@0: }; michael@0: michael@0: