dom/xslt/nsIDocumentTransformer.h

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     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/. */
     5 #ifndef nsIDocumentTransformer_h__
     6 #define nsIDocumentTransformer_h__
     8 #include "nsISupports.h"
    10 class nsIDOMNode;
    11 class nsILoadGroup;
    12 class nsIURI;
    13 class nsIPrincipal;
    14 class nsString;
    16 #define NS_ITRANSFORMOBSERVER_IID \
    17 { 0x04b2d17c, 0xe98d, 0x45f5, \
    18   { 0x9a, 0x67, 0xb7, 0x01, 0x19, 0x59, 0x7d, 0xe7 } }
    20 class nsITransformObserver : public nsISupports
    21 {
    22 public: 
    24   NS_DECLARE_STATIC_IID_ACCESSOR(NS_ITRANSFORMOBSERVER_IID)
    26   NS_IMETHOD OnDocumentCreated(nsIDocument *aResultDocument) = 0;
    28   NS_IMETHOD OnTransformDone(nsresult aResult,
    29                              nsIDocument *aResultDocument) = 0;
    31 };
    33 NS_DEFINE_STATIC_IID_ACCESSOR(nsITransformObserver, NS_ITRANSFORMOBSERVER_IID)
    35 #define NS_IDOCUMENTTRANSFORMER_IID \
    36   {0x17c83d91, 0xac2f, 0x4658, \
    37     { 0x91, 0x6c, 0xcb, 0xc4, 0xd2, 0xb5, 0x2c, 0xe }}
    39 class nsIDocumentTransformer : public nsISupports
    40 {
    41 public: 
    43   NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOCUMENTTRANSFORMER_IID)
    45   NS_IMETHOD Init(nsIPrincipal* aPrincipal) = 0;
    46   NS_IMETHOD SetTransformObserver(nsITransformObserver* aObserver) = 0;
    47   NS_IMETHOD LoadStyleSheet(nsIURI* aUri, nsILoadGroup* aLoadGroup) = 0;
    48   NS_IMETHOD SetSourceContentModel(nsIDOMNode* aSource) = 0;
    49   NS_IMETHOD CancelLoads() = 0;
    51   NS_IMETHOD AddXSLTParamNamespace(const nsString& aPrefix,
    52                                    const nsString& aNamespace) = 0;
    53   NS_IMETHOD AddXSLTParam(const nsString& aName,
    54                           const nsString& aNamespace,
    55                           const nsString& aValue,
    56                           const nsString& aSelect,
    57                           nsIDOMNode* aContextNode) = 0;
    58 };
    60 NS_DEFINE_STATIC_IID_ACCESSOR(nsIDocumentTransformer,
    61                               NS_IDOCUMENTTRANSFORMER_IID)
    63 #endif //nsIDocumentTransformer_h__

mercurial