Bug 528863 - Use _h instead of _h__ in include guards in the HTML5 parser. r=hsivonen

This commit is contained in:
Cykesiopka 2013-08-23 11:07:10 -04:00
parent 6922532fd3
commit 7350a155ff
43 changed files with 117 additions and 117 deletions

View File

@ -20,8 +20,8 @@
* DEALINGS IN THE SOFTWARE.
*/
#ifndef jArray_h_
#define jArray_h_
#ifndef jArray_h
#define jArray_h
#include "mozilla/NullPtr.h"
#include "nsDebug.h"
@ -124,4 +124,4 @@ class autoJArray {
}
};
#endif // jArray_h_
#endif // jArray_h

View File

@ -2,8 +2,8 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef nsAHtml5TreeBuilderState_h___
#define nsAHtml5TreeBuilderState_h___
#ifndef nsAHtml5TreeBuilderState_h
#define nsAHtml5TreeBuilderState_h
/**
* Interface for exposing the internal state of the HTML5 tree builder.
@ -45,4 +45,4 @@ class nsAHtml5TreeBuilderState {
}
};
#endif /* nsAHtml5TreeBuilderState_h___ */
#endif /* nsAHtml5TreeBuilderState_h */

View File

@ -2,8 +2,8 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef nsAHtml5TreeOpSink_h___
#define nsAHtml5TreeOpSink_h___
#ifndef nsAHtml5TreeOpSink_h
#define nsAHtml5TreeOpSink_h
/**
* The purpose of this interface is to connect a tree op executor
@ -21,4 +21,4 @@ class nsAHtml5TreeOpSink {
};
#endif /* nsAHtml5TreeOpSink_h___ */
#endif /* nsAHtml5TreeOpSink_h */

View File

@ -20,8 +20,8 @@
* DEALINGS IN THE SOFTWARE.
*/
#ifndef nsHtml5ArrayCopy_h__
#define nsHtml5ArrayCopy_h__
#ifndef nsHtml5ArrayCopy_h
#define nsHtml5ArrayCopy_h
#include "prtypes.h"
@ -76,4 +76,4 @@ class nsHtml5ArrayCopy {
memmove(&(arr[targetOffset]), &(arr[sourceOffset]), length * sizeof(nsHtml5StackNode*));
}
};
#endif // nsHtml5ArrayCopy_h__
#endif // nsHtml5ArrayCopy_h

View File

@ -2,8 +2,8 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef nsHtml5Atom_h_
#define nsHtml5Atom_h_
#ifndef nsHtml5Atom_h
#define nsHtml5Atom_h
#include "nsIAtom.h"
#include "mozilla/Attributes.h"
@ -25,4 +25,4 @@ class nsHtml5Atom MOZ_FINAL : public nsIAtom
~nsHtml5Atom();
};
#endif // nsHtml5Atom_h_
#endif // nsHtml5Atom_h

View File

@ -2,8 +2,8 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef nsHtml5AtomTable_h_
#define nsHtml5AtomTable_h_
#ifndef nsHtml5AtomTable_h
#define nsHtml5AtomTable_h
#include "nsHashKeys.h"
#include "nsTHashtable.h"
@ -108,4 +108,4 @@ class nsHtml5AtomTable
#endif
};
#endif // nsHtml5AtomTable_h_
#endif // nsHtml5AtomTable_h

View File

@ -9,8 +9,8 @@
* is loaded and they are destroyed when gklayout is unloaded.
*/
#ifndef nsHtml5Atoms_h___
#define nsHtml5Atoms_h___
#ifndef nsHtml5Atoms_h
#define nsHtml5Atoms_h
#include "nsIAtom.h"
@ -27,4 +27,4 @@ class nsHtml5Atoms {
#undef HTML5_ATOM
};
#endif /* nsHtml5Atoms_h___ */
#endif /* nsHtml5Atoms_h */

View File

@ -25,8 +25,8 @@
* Please edit AttributeName.java instead and regenerate.
*/
#ifndef nsHtml5AttributeName_h__
#define nsHtml5AttributeName_h__
#ifndef nsHtml5AttributeName_h
#define nsHtml5AttributeName_h
#include "nsIAtom.h"
#include "nsHtml5AtomTable.h"

View File

@ -2,8 +2,8 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef nsHtml5ByteReadable_h__
#define nsHtml5ByteReadable_h__
#ifndef nsHtml5ByteReadable_h
#define nsHtml5ByteReadable_h
/**
* A weak reference wrapper around a byte array.

View File

@ -2,8 +2,8 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef nsHtml5DependentUTF16Buffer_h_
#define nsHtml5DependentUTF16Buffer_h_
#ifndef nsHtml5DependentUTF16Buffer_h
#define nsHtml5DependentUTF16Buffer_h
#include "nscore.h"
#include "nsHtml5OwningUTF16Buffer.h"
@ -28,4 +28,4 @@ class MOZ_STACK_CLASS nsHtml5DependentUTF16Buffer : public nsHtml5UTF16Buffer
already_AddRefed<nsHtml5OwningUTF16Buffer> FalliblyCopyAsOwningBuffer();
};
#endif // nsHtml5DependentUTF16Buffer_h_
#endif // nsHtml5DependentUTF16Buffer_h

View File

@ -2,8 +2,8 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef nsHtml5DocumentMode_h__
#define nsHtml5DocumentMode_h__
#ifndef nsHtml5DocumentMode_h
#define nsHtml5DocumentMode_h
enum nsHtml5DocumentMode {
STANDARDS_MODE,
@ -11,4 +11,4 @@ enum nsHtml5DocumentMode {
QUIRKS_MODE
};
#endif // nsHtml5DocumentMode_h__
#endif // nsHtml5DocumentMode_h

View File

@ -25,8 +25,8 @@
* Please edit ElementName.java instead and regenerate.
*/
#ifndef nsHtml5ElementName_h__
#define nsHtml5ElementName_h__
#ifndef nsHtml5ElementName_h
#define nsHtml5ElementName_h
#include "nsIAtom.h"
#include "nsHtml5AtomTable.h"

View File

@ -1,8 +1,8 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef nsHtml5Highlighter_h_
#define nsHtml5Highlighter_h_
#ifndef nsHtml5Highlighter_h
#define nsHtml5Highlighter_h
#include "prtypes.h"
#include "nsCOMPtr.h"
@ -402,4 +402,4 @@ class nsHtml5Highlighter
static PRUnichar sPi[];
};
#endif // nsHtml5Highlighter_h_
#endif // nsHtml5Highlighter_h

View File

@ -26,8 +26,8 @@
* Please edit HtmlAttributes.java instead and regenerate.
*/
#ifndef nsHtml5HtmlAttributes_h__
#define nsHtml5HtmlAttributes_h__
#ifndef nsHtml5HtmlAttributes_h
#define nsHtml5HtmlAttributes_h
#include "nsIAtom.h"
#include "nsHtml5AtomTable.h"

View File

@ -20,8 +20,8 @@
* DEALINGS IN THE SOFTWARE.
*/
#ifndef nsHtml5Macros_h_
#define nsHtml5Macros_h_
#ifndef nsHtml5Macros_h
#define nsHtml5Macros_h
#define NS_HTML5_CONTINUE(target) \
goto target
@ -29,4 +29,4 @@
#define NS_HTML5_BREAK(target) \
goto target ## _end
#endif /* nsHtml5Macros_h_ */
#endif /* nsHtml5Macros_h */

View File

@ -26,8 +26,8 @@
* Please edit MetaScanner.java instead and regenerate.
*/
#ifndef nsHtml5MetaScanner_h__
#define nsHtml5MetaScanner_h__
#ifndef nsHtml5MetaScanner_h
#define nsHtml5MetaScanner_h
#include "nsIAtom.h"
#include "nsHtml5AtomTable.h"

View File

@ -2,8 +2,8 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef nsHtml5Module_h__
#define nsHtml5Module_h__
#ifndef nsHtml5Module_h
#define nsHtml5Module_h
#include "nsIParser.h"
#include "nsIThread.h"
@ -25,4 +25,4 @@ class nsHtml5Module
static nsIThread* sMainThread;
};
#endif // nsHtml5Module_h__
#endif // nsHtml5Module_h

View File

@ -20,8 +20,8 @@
* DEALINGS IN THE SOFTWARE.
*/
#ifndef nsHtml5NamedCharacters_h_
#define nsHtml5NamedCharacters_h_
#ifndef nsHtml5NamedCharacters_h
#define nsHtml5NamedCharacters_h
#include "prtypes.h"
#include "jArray.h"
@ -50,4 +50,4 @@ class nsHtml5NamedCharacters
static void releaseStatics();
};
#endif // nsHtml5NamedCharacters_h_
#endif // nsHtml5NamedCharacters_h

View File

@ -6,8 +6,8 @@
* this document.
*/
#ifndef nsHtml5NamedCharactersAccel_h_
#define nsHtml5NamedCharactersAccel_h_
#ifndef nsHtml5NamedCharactersAccel_h
#define nsHtml5NamedCharactersAccel_h
#include "prtypes.h"
#include "jArray.h"
@ -22,4 +22,4 @@ class nsHtml5NamedCharactersAccel
static const int32_t* const HILO_ACCEL[];
};
#endif // nsHtml5NamedCharactersAccel_h_
#endif // nsHtml5NamedCharactersAccel_h

View File

@ -2,8 +2,8 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef nsHtml5OwningUTF16Buffer_h_
#define nsHtml5OwningUTF16Buffer_h_
#ifndef nsHtml5OwningUTF16Buffer_h
#define nsHtml5OwningUTF16Buffer_h
#include "nsHtml5UTF16Buffer.h"
@ -53,4 +53,4 @@ class nsHtml5OwningUTF16Buffer : public nsHtml5UTF16Buffer
nsAutoRefCnt mRefCnt;
};
#endif // nsHtml5OwningUTF16Buffer_h_
#endif // nsHtml5OwningUTF16Buffer_h

View File

@ -3,8 +3,8 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef NS_HTML5_PARSER__
#define NS_HTML5_PARSER__
#ifndef NS_HTML5_PARSER
#define NS_HTML5_PARSER
#include "nsAutoPtr.h"
#include "nsIParser.h"

View File

@ -2,8 +2,8 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef nsHtml5PendingNotification_h__
#define nsHtml5PendingNotification_h__
#ifndef nsHtml5PendingNotification_h
#define nsHtml5PendingNotification_h
#include "nsNodeUtils.h"
@ -48,4 +48,4 @@ class nsHtml5PendingNotification {
uint32_t mChildCount;
};
#endif // nsHtml5PendingNotification_h__
#endif // nsHtml5PendingNotification_h

View File

@ -2,8 +2,8 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef nsHtml5PlainTextUtils_h_
#define nsHtml5PlainTextUtils_h_
#ifndef nsHtml5PlainTextUtils_h
#define nsHtml5PlainTextUtils_h
#include "nsHtml5HtmlAttributes.h"
@ -13,4 +13,4 @@ class nsHtml5PlainTextUtils
static nsHtml5HtmlAttributes* NewLinkAttributes();
};
#endif // nsHtml5PlainTextUtils_h_
#endif // nsHtml5PlainTextUtils_h

View File

@ -25,8 +25,8 @@
* Please edit Portability.java instead and regenerate.
*/
#ifndef nsHtml5Portability_h__
#define nsHtml5Portability_h__
#ifndef nsHtml5Portability_h
#define nsHtml5Portability_h
#include "nsIAtom.h"
#include "nsHtml5AtomTable.h"

View File

@ -3,8 +3,8 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef nsHtml5RefPtr_h___
#define nsHtml5RefPtr_h___
#ifndef nsHtml5RefPtr_h
#define nsHtml5RefPtr_h
#include "nsIThread.h"
@ -485,4 +485,4 @@ operator==( int lhs, const nsHtml5RefPtr<T>& rhs )
#endif // !defined(HAVE_CPP_TROUBLE_COMPARING_TO_ZERO)
#endif // !defined(nsHtml5RefPtr_h___)
#endif // !defined(nsHtml5RefPtr_h)

View File

@ -2,8 +2,8 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef nsHtml5ReleasableAttributeName_h__
#define nsHtml5ReleasableAttributeName_h__
#ifndef nsHtml5ReleasableAttributeName_h
#define nsHtml5ReleasableAttributeName_h
#include "nsHtml5AttributeName.h"
#include "mozilla/Attributes.h"
@ -18,4 +18,4 @@ class nsHtml5ReleasableAttributeName MOZ_FINAL : public nsHtml5AttributeName
virtual void release();
};
#endif // nsHtml5ReleasableAttributeName_h__
#endif // nsHtml5ReleasableAttributeName_h

View File

@ -2,8 +2,8 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef nsHtml5ReleasableElementName_h__
#define nsHtml5ReleasableElementName_h__
#ifndef nsHtml5ReleasableElementName_h
#define nsHtml5ReleasableElementName_h
#include "nsHtml5ElementName.h"
#include "mozilla/Attributes.h"
@ -16,4 +16,4 @@ class nsHtml5ReleasableElementName MOZ_FINAL : public nsHtml5ElementName
virtual nsHtml5ElementName* cloneElementName(nsHtml5AtomTable* interner);
};
#endif // nsHtml5ReleasableElementName_h__
#endif // nsHtml5ReleasableElementName_h

View File

@ -2,8 +2,8 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef nsHtml5SVGLoadDispatcher_h_
#define nsHtml5SVGLoadDispatcher_h_
#ifndef nsHtml5SVGLoadDispatcher_h
#define nsHtml5SVGLoadDispatcher_h
#include "nsThreadUtils.h"
#include "nsIContent.h"
@ -18,4 +18,4 @@ class nsHtml5SVGLoadDispatcher : public nsRunnable
NS_IMETHOD Run();
};
#endif // nsHtml5SVGLoadDispatcher_h_
#endif // nsHtml5SVGLoadDispatcher_h

View File

@ -2,8 +2,8 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef nsHtml5Speculation_h__
#define nsHtml5Speculation_h__
#ifndef nsHtml5Speculation_h
#define nsHtml5Speculation_h
#include "nsHtml5OwningUTF16Buffer.h"
#include "nsAHtml5TreeBuilderState.h"
@ -68,4 +68,4 @@ class nsHtml5Speculation MOZ_FINAL : public nsAHtml5TreeOpSink
nsTArray<nsHtml5TreeOperation> mOpQueue;
};
#endif // nsHtml5Speculation_h__
#endif // nsHtml5Speculation_h

View File

@ -2,8 +2,8 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef nsHtml5SpeculativeLoad_h_
#define nsHtml5SpeculativeLoad_h_
#ifndef nsHtml5SpeculativeLoad_h
#define nsHtml5SpeculativeLoad_h
#include "nsString.h"
@ -132,4 +132,4 @@ class nsHtml5SpeculativeLoad {
nsString mCrossOrigin;
};
#endif // nsHtml5SpeculativeLoad_h_
#endif // nsHtml5SpeculativeLoad_h

View File

@ -26,8 +26,8 @@
* Please edit StackNode.java instead and regenerate.
*/
#ifndef nsHtml5StackNode_h__
#define nsHtml5StackNode_h__
#ifndef nsHtml5StackNode_h
#define nsHtml5StackNode_h
#include "nsIAtom.h"
#include "nsHtml5AtomTable.h"

View File

@ -25,8 +25,8 @@
* Please edit StateSnapshot.java instead and regenerate.
*/
#ifndef nsHtml5StateSnapshot_h__
#define nsHtml5StateSnapshot_h__
#ifndef nsHtml5StateSnapshot_h
#define nsHtml5StateSnapshot_h
#include "nsIAtom.h"
#include "nsHtml5AtomTable.h"

View File

@ -3,8 +3,8 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef nsHtml5StreamParser_h__
#define nsHtml5StreamParser_h__
#ifndef nsHtml5StreamParser_h
#define nsHtml5StreamParser_h
#include "nsAutoPtr.h"
#include "nsCOMPtr.h"
@ -561,4 +561,4 @@ class nsHtml5StreamParser : public nsIStreamListener,
static int32_t sTimerSubsequentDelay;
};
#endif // nsHtml5StreamParser_h__
#endif // nsHtml5StreamParser_h

View File

@ -2,8 +2,8 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef nsHtml5StringParser_h_
#define nsHtml5StringParser_h_
#ifndef nsHtml5StringParser_h
#define nsHtml5StringParser_h
#include "nsHtml5AtomTable.h"
#include "nsParserBase.h"
@ -84,4 +84,4 @@ class nsHtml5StringParser : public nsParserBase
};
#endif // nsHtml5StringParser_h_
#endif // nsHtml5StringParser_h

View File

@ -28,8 +28,8 @@
* Please edit Tokenizer.java instead and regenerate.
*/
#ifndef nsHtml5Tokenizer_h__
#define nsHtml5Tokenizer_h__
#ifndef nsHtml5Tokenizer_h
#define nsHtml5Tokenizer_h
#include "nsIAtom.h"
#include "nsHtml5AtomTable.h"

View File

@ -2,8 +2,8 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef nsHtml5TokenizerLoopPolicies_h_
#define nsHtml5TokenizerLoopPolicies_h_
#ifndef nsHtml5TokenizerLoopPolicies_h
#define nsHtml5TokenizerLoopPolicies_h
/**
* This policy does not report tokenizer transitions anywhere. To be used
@ -40,4 +40,4 @@ struct nsHtml5ViewSourcePolicy
}
};
#endif // nsHtml5TokenizerLoopPolicies_h_
#endif // nsHtml5TokenizerLoopPolicies_h

View File

@ -28,8 +28,8 @@
* Please edit TreeBuilder.java instead and regenerate.
*/
#ifndef nsHtml5TreeBuilder_h__
#define nsHtml5TreeBuilder_h__
#ifndef nsHtml5TreeBuilder_h
#define nsHtml5TreeBuilder_h
#include "nsIAtom.h"
#include "nsHtml5AtomTable.h"

View File

@ -2,8 +2,8 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef nsHtml5TreeOpExecutor_h__
#define nsHtml5TreeOpExecutor_h__
#ifndef nsHtml5TreeOpExecutor_h
#define nsHtml5TreeOpExecutor_h
#include "nsIAtom.h"
#include "nsINameSpaceManager.h"
@ -415,4 +415,4 @@ class nsHtml5TreeOpExecutor : public nsContentSink,
};
#endif // nsHtml5TreeOpExecutor_h__
#endif // nsHtml5TreeOpExecutor_h

View File

@ -2,8 +2,8 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef nsHtml5TreeOpStage_h___
#define nsHtml5TreeOpStage_h___
#ifndef nsHtml5TreeOpStage_h
#define nsHtml5TreeOpStage_h
#include "mozilla/Mutex.h"
#include "nsHtml5TreeOperation.h"
@ -51,4 +51,4 @@ class nsHtml5TreeOpStage : public nsAHtml5TreeOpSink {
};
#endif /* nsHtml5TreeOpStage_h___ */
#endif /* nsHtml5TreeOpStage_h */

View File

@ -2,8 +2,8 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef nsHtml5TreeOperation_h__
#define nsHtml5TreeOperation_h__
#ifndef nsHtml5TreeOperation_h
#define nsHtml5TreeOperation_h
#include "nsHtml5DocumentMode.h"
#include "nsHtml5HtmlAttributes.h"
@ -394,4 +394,4 @@ class nsHtml5TreeOperation {
} mOne, mTwo, mThree, mFour;
};
#endif // nsHtml5TreeOperation_h__
#endif // nsHtml5TreeOperation_h

View File

@ -25,8 +25,8 @@
* Please edit UTF16Buffer.java instead and regenerate.
*/
#ifndef nsHtml5UTF16Buffer_h__
#define nsHtml5UTF16Buffer_h__
#ifndef nsHtml5UTF16Buffer_h
#define nsHtml5UTF16Buffer_h
#include "nsIAtom.h"
#include "nsHtml5AtomTable.h"

View File

@ -2,8 +2,8 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef nsHtml5ViewSourceUtils_h_
#define nsHtml5ViewSourceUtils_h_
#ifndef nsHtml5ViewSourceUtils_h
#define nsHtml5ViewSourceUtils_h
#include "nsHtml5HtmlAttributes.h"
@ -14,4 +14,4 @@ class nsHtml5ViewSourceUtils
static nsHtml5HtmlAttributes* NewLinkAttributes();
};
#endif // nsHtml5ViewSourceUtils_h_
#endif // nsHtml5ViewSourceUtils_h

View File

@ -3,8 +3,8 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef nsParserUtils_h_
#define nsParserUtils_h_
#ifndef nsParserUtils_h
#define nsParserUtils_h
#include "nsIScriptableUnescapeHTML.h"
#include "nsIParserUtils.h"
@ -19,4 +19,4 @@ public:
NS_DECL_NSIPARSERUTILS
};
#endif // nsParserUtils_h_
#endif // nsParserUtils_h