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/. */
|
2009-06-28 15:44:22 -07:00
|
|
|
|
|
|
|
#ifndef nsHtml5ReleasableAttributeName_h__
|
|
|
|
#define nsHtml5ReleasableAttributeName_h__
|
|
|
|
|
|
|
|
#include "nsHtml5AttributeName.h"
|
2012-07-13 11:55:21 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2009-06-28 15:44:22 -07:00
|
|
|
|
2009-09-21 06:18:20 -07:00
|
|
|
class nsHtml5AtomTable;
|
|
|
|
|
2012-07-13 11:55:21 -07:00
|
|
|
class nsHtml5ReleasableAttributeName MOZ_FINAL : public nsHtml5AttributeName
|
2009-06-28 15:44:22 -07:00
|
|
|
{
|
|
|
|
public:
|
2012-08-22 08:56:38 -07:00
|
|
|
nsHtml5ReleasableAttributeName(int32_t* uri, nsIAtom** local, nsIAtom** prefix);
|
2009-09-21 06:18:20 -07:00
|
|
|
virtual nsHtml5AttributeName* cloneAttributeName(nsHtml5AtomTable* aInterner);
|
2009-06-28 15:44:22 -07:00
|
|
|
virtual void release();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsHtml5ReleasableAttributeName_h__
|