tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

nsIURIWithSpecialOrigin.idl (630B)


      1 /* This Source Code Form is subject to the terms of the Mozilla Public
      2 * License, v. 2.0. If a copy of the MPL was not distributed with this
      3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      4 
      5 #include "nsISupports.idl"
      6 
      7 interface nsIURI;
      8 
      9 /**
     10 * nsIURIWithSpecialOrigin is implemented by URIs need to supply an origin that
     11 * does not match the spec. This is exclusively used in comm-central's Mailnews module.
     12 */
     13 [scriptable, builtinclass, uuid(4f65569b-d6fc-4580-94d9-21e775658a2a)]
     14 interface nsIURIWithSpecialOrigin : nsISupports
     15 {
     16    /**
     17     * Special origin.
     18     */
     19    readonly attribute nsIURI origin;
     20 };