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