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 nsIPrincipal; michael@0: interface nsIURI; michael@0: michael@0: /** michael@0: * nsIURIWithPrincipal is implemented by URIs which are associated with a michael@0: * specific principal. michael@0: */ michael@0: [scriptable, uuid(626a5c0c-bfd8-4531-8b47-a8451b0daa33)] michael@0: interface nsIURIWithPrincipal : nsISupports michael@0: { michael@0: /** michael@0: * The principal associated with the resource returned when loading this michael@0: * uri. michael@0: */ michael@0: readonly attribute nsIPrincipal principal; michael@0: michael@0: /** michael@0: * The uri for the principal. michael@0: */ michael@0: readonly attribute nsIURI principalUri; michael@0: };