2012-05-29 19:52:43 +04: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/. */
|
2009-06-29 02:44:22 +04:00
|
|
|
|
2013-08-23 19:07:10 +04:00
|
|
|
#ifndef nsHtml5ReleasableAttributeName_h
|
|
|
|
#define nsHtml5ReleasableAttributeName_h
|
2009-06-29 02:44:22 +04:00
|
|
|
|
|
|
|
#include "nsHtml5AttributeName.h"
|
2012-07-13 22:55:21 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2009-06-29 02:44:22 +04:00
|
|
|
|
2009-09-21 17:18:20 +04:00
|
|
|
class nsHtml5AtomTable;
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class nsHtml5ReleasableAttributeName final : public nsHtml5AttributeName
|
2009-06-29 02:44:22 +04:00
|
|
|
{
|
|
|
|
public:
|
2012-08-22 19:56:38 +04:00
|
|
|
nsHtml5ReleasableAttributeName(int32_t* uri, nsIAtom** local, nsIAtom** prefix);
|
2009-09-21 17:18:20 +04:00
|
|
|
virtual nsHtml5AttributeName* cloneAttributeName(nsHtml5AtomTable* aInterner);
|
2009-06-29 02:44:22 +04:00
|
|
|
virtual void release();
|
|
|
|
};
|
|
|
|
|
2013-08-23 19:07:10 +04:00
|
|
|
#endif // nsHtml5ReleasableAttributeName_h
|