Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
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 __inDOMUtils_h__ |
michael@0 | 6 | #define __inDOMUtils_h__ |
michael@0 | 7 | |
michael@0 | 8 | #include "inIDOMUtils.h" |
michael@0 | 9 | |
michael@0 | 10 | class nsRuleNode; |
michael@0 | 11 | class nsStyleContext; |
michael@0 | 12 | class nsIAtom; |
michael@0 | 13 | |
michael@0 | 14 | namespace mozilla { |
michael@0 | 15 | namespace dom { |
michael@0 | 16 | class Element; |
michael@0 | 17 | } // namespace dom |
michael@0 | 18 | } // namespace mozilla |
michael@0 | 19 | |
michael@0 | 20 | class inDOMUtils : public inIDOMUtils |
michael@0 | 21 | { |
michael@0 | 22 | public: |
michael@0 | 23 | NS_DECL_ISUPPORTS |
michael@0 | 24 | NS_DECL_INIDOMUTILS |
michael@0 | 25 | |
michael@0 | 26 | inDOMUtils(); |
michael@0 | 27 | virtual ~inDOMUtils(); |
michael@0 | 28 | |
michael@0 | 29 | private: |
michael@0 | 30 | // aStyleContext must be released by the caller once he's done with aRuleNode. |
michael@0 | 31 | static nsresult GetRuleNodeForElement(mozilla::dom::Element* aElement, |
michael@0 | 32 | nsIAtom* aPseudo, |
michael@0 | 33 | nsStyleContext** aStyleContext, |
michael@0 | 34 | nsRuleNode** aRuleNode); |
michael@0 | 35 | }; |
michael@0 | 36 | |
michael@0 | 37 | // {0a499822-a287-4089-ad3f-9ffcd4f40263} |
michael@0 | 38 | #define IN_DOMUTILS_CID \ |
michael@0 | 39 | {0x0a499822, 0xa287, 0x4089, {0xad, 0x3f, 0x9f, 0xfc, 0xd4, 0xf4, 0x02, 0x63}} |
michael@0 | 40 | |
michael@0 | 41 | #endif // __inDOMUtils_h__ |