Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
michael@0 | 1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 4 | |
michael@0 | 5 | #ifndef nsHtml5PendingNotification_h |
michael@0 | 6 | #define nsHtml5PendingNotification_h |
michael@0 | 7 | |
michael@0 | 8 | #include "nsNodeUtils.h" |
michael@0 | 9 | |
michael@0 | 10 | class nsHtml5TreeBuilder; |
michael@0 | 11 | |
michael@0 | 12 | class nsHtml5PendingNotification { |
michael@0 | 13 | public: |
michael@0 | 14 | |
michael@0 | 15 | nsHtml5PendingNotification(nsIContent* aParent) |
michael@0 | 16 | : mParent(aParent), |
michael@0 | 17 | mChildCount(aParent->GetChildCount() - 1) |
michael@0 | 18 | { |
michael@0 | 19 | MOZ_COUNT_CTOR(nsHtml5PendingNotification); |
michael@0 | 20 | } |
michael@0 | 21 | |
michael@0 | 22 | ~nsHtml5PendingNotification() |
michael@0 | 23 | { |
michael@0 | 24 | MOZ_COUNT_DTOR(nsHtml5PendingNotification); |
michael@0 | 25 | } |
michael@0 | 26 | |
michael@0 | 27 | inline void Fire() |
michael@0 | 28 | { |
michael@0 | 29 | nsNodeUtils::ContentAppended(mParent, mParent->GetChildAt(mChildCount), |
michael@0 | 30 | mChildCount); |
michael@0 | 31 | } |
michael@0 | 32 | |
michael@0 | 33 | inline bool Contains(nsIContent* aNode) |
michael@0 | 34 | { |
michael@0 | 35 | return !!(mParent == aNode); |
michael@0 | 36 | } |
michael@0 | 37 | |
michael@0 | 38 | inline bool HaveNotifiedIndex(uint32_t index) |
michael@0 | 39 | { |
michael@0 | 40 | return index < mChildCount; |
michael@0 | 41 | } |
michael@0 | 42 | |
michael@0 | 43 | private: |
michael@0 | 44 | /** |
michael@0 | 45 | * An element |
michael@0 | 46 | */ |
michael@0 | 47 | nsIContent* mParent; |
michael@0 | 48 | |
michael@0 | 49 | /** |
michael@0 | 50 | * Child count at start of notification deferring |
michael@0 | 51 | */ |
michael@0 | 52 | uint32_t mChildCount; |
michael@0 | 53 | }; |
michael@0 | 54 | |
michael@0 | 55 | #endif // nsHtml5PendingNotification_h |