2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-29 08:52:43 -07:00
|
|
|
/* 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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-02-27 03:57:48 -08:00
|
|
|
#ifndef nsParserUtils_h_
|
|
|
|
#define nsParserUtils_h_
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#include "nsIScriptableUnescapeHTML.h"
|
2012-02-27 03:57:48 -08:00
|
|
|
#include "nsIParserUtils.h"
|
2012-06-12 21:07:59 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-06-12 21:07:59 -07:00
|
|
|
class nsParserUtils MOZ_FINAL : public nsIScriptableUnescapeHTML,
|
|
|
|
public nsIParserUtils
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSISCRIPTABLEUNESCAPEHTML
|
2012-02-27 03:57:48 -08:00
|
|
|
NS_DECL_NSIPARSERUTILS
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
2012-02-27 03:57:48 -08:00
|
|
|
#endif // nsParserUtils_h_
|