Bug 1855360 - Fix the skip-if syntax. a=bustage-fix
[gecko.git] / parser / htmlparser / nsParserBase.h
blob7d82f6f7d8553eaa9f7b0a150aef8a202edd7fd2
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 nsParserBase_h_
6 #define nsParserBase_h_
8 #include "nsIChannel.h"
10 class nsParserBase : public nsISupports {
11 public:
12 NS_IMETHOD_(bool) IsParserEnabled() { return true; }
13 NS_IMETHOD_(bool) IsParserClosed() { return false; }
16 #endif // nsParserBase_h_