Thu, 15 Jan 2015 21:03:48 +0100
Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)
michael@0 | 1 | /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ |
michael@0 | 2 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 5 | |
michael@0 | 6 | #include "nsIChannel.idl" |
michael@0 | 7 | |
michael@0 | 8 | [uuid(0073d67c-a64f-4f45-8f36-02cd0abfeca1)] |
michael@0 | 9 | interface nsIViewSourceChannel : nsIChannel |
michael@0 | 10 | { |
michael@0 | 11 | /** |
michael@0 | 12 | * The actual (MIME) content type of the data. |
michael@0 | 13 | * |
michael@0 | 14 | * nsIViewSourceChannel returns a content type of |
michael@0 | 15 | * "application/x-view-source" if you ask it for the contentType |
michael@0 | 16 | * attribute. |
michael@0 | 17 | * |
michael@0 | 18 | * However, callers interested in finding out or setting the |
michael@0 | 19 | * actual content type can utilize this attribute. |
michael@0 | 20 | */ |
michael@0 | 21 | attribute ACString originalContentType; |
michael@0 | 22 | |
michael@0 | 23 | /** |
michael@0 | 24 | * Whether the channel was created to view the source of a srcdoc document. |
michael@0 | 25 | */ |
michael@0 | 26 | readonly attribute boolean isSrcdocChannel; |
michael@0 | 27 | |
michael@0 | 28 | /** |
michael@0 | 29 | * Set to indicate the base URI. If this channel is a srcdoc channel, it |
michael@0 | 30 | * returns the base URI provided by the embedded channel. It is used to |
michael@0 | 31 | * provide an indication of the base URI in circumstances where it isn't |
michael@0 | 32 | * otherwise recoverable. Returns null when it isn't set and isn't a |
michael@0 | 33 | * srcdoc channel. |
michael@0 | 34 | */ |
michael@0 | 35 | attribute nsIURI baseURI; |
michael@0 | 36 | }; |
michael@0 | 37 | |
michael@0 | 38 |