Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
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 | #ifndef nsIAbsorbingTransaction_h__ |
michael@0 | 7 | #define nsIAbsorbingTransaction_h__ |
michael@0 | 8 | |
michael@0 | 9 | #include "nsISupports.h" |
michael@0 | 10 | |
michael@0 | 11 | /* |
michael@0 | 12 | Transaction interface to outside world |
michael@0 | 13 | */ |
michael@0 | 14 | |
michael@0 | 15 | #define NS_IABSORBINGTRANSACTION_IID \ |
michael@0 | 16 | { /* a6cf9116-15b3-11d2-932e-00805f8add32 */ \ |
michael@0 | 17 | 0xa6cf9116, \ |
michael@0 | 18 | 0x15b3, \ |
michael@0 | 19 | 0x11d2, \ |
michael@0 | 20 | {0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32} } |
michael@0 | 21 | |
michael@0 | 22 | class nsSelectionState; |
michael@0 | 23 | class nsIEditor; |
michael@0 | 24 | class nsIAtom; |
michael@0 | 25 | |
michael@0 | 26 | /** |
michael@0 | 27 | * A transaction interface mixin - for transactions that can support. |
michael@0 | 28 | * the placeholder absorbtion idiom. |
michael@0 | 29 | */ |
michael@0 | 30 | class nsIAbsorbingTransaction : public nsISupports{ |
michael@0 | 31 | public: |
michael@0 | 32 | |
michael@0 | 33 | NS_DECLARE_STATIC_IID_ACCESSOR(NS_IABSORBINGTRANSACTION_IID) |
michael@0 | 34 | |
michael@0 | 35 | NS_IMETHOD Init(nsIAtom* aName, nsSelectionState* aSelState, |
michael@0 | 36 | nsEditor* aEditor) = 0; |
michael@0 | 37 | |
michael@0 | 38 | NS_IMETHOD EndPlaceHolderBatch()=0; |
michael@0 | 39 | |
michael@0 | 40 | NS_IMETHOD GetTxnName(nsIAtom **aName)=0; |
michael@0 | 41 | |
michael@0 | 42 | NS_IMETHOD StartSelectionEquals(nsSelectionState *aSelState, bool *aResult)=0; |
michael@0 | 43 | |
michael@0 | 44 | NS_IMETHOD ForwardEndBatchTo(nsIAbsorbingTransaction *aForwardingAddress)=0; |
michael@0 | 45 | |
michael@0 | 46 | NS_IMETHOD Commit()=0; |
michael@0 | 47 | }; |
michael@0 | 48 | |
michael@0 | 49 | NS_DEFINE_STATIC_IID_ACCESSOR(nsIAbsorbingTransaction, |
michael@0 | 50 | NS_IABSORBINGTRANSACTION_IID) |
michael@0 | 51 | |
michael@0 | 52 | #endif // nsIAbsorbingTransaction_h__ |
michael@0 | 53 |