2001-09-25 22:53:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00: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/. */
|
2001-08-07 21:12:08 +00:00
|
|
|
|
|
|
|
|
2012-07-13 06:33:42 +00:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsISupportsImpl.h"
|
2001-08-07 21:12:08 +00:00
|
|
|
#include "nsIURIRefObject.h"
|
2012-07-13 06:33:42 +00:00
|
|
|
#include "nscore.h"
|
2001-08-07 21:12:08 +00:00
|
|
|
|
2013-03-10 08:00:33 +00:00
|
|
|
class nsIDOMMozNamedAttrMap;
|
2012-07-13 06:33:42 +00:00
|
|
|
class nsIDOMNode;
|
2001-08-07 21:12:08 +00:00
|
|
|
|
|
|
|
#ifndef nsHTMLURIRefObject_h__
|
|
|
|
#define nsHTMLURIRefObject_h__
|
|
|
|
|
|
|
|
#define NS_URI_REF_OBJECT_CID \
|
|
|
|
{ /* {bdd79df6-1dd1-11b2-b29c-c3d63a58f1d2} */ \
|
|
|
|
0xbdd79df6, 0x1dd1, 0x11b2, \
|
|
|
|
{ 0xb2, 0x9c, 0xc3, 0xd6, 0x3a, 0x58, 0xf1, 0xd2 } \
|
|
|
|
}
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
class nsHTMLURIRefObject final : public nsIURIRefObject
|
2001-08-07 21:12:08 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsHTMLURIRefObject();
|
|
|
|
|
|
|
|
// Interfaces for addref and release and queryinterface
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
NS_DECL_NSIURIREFOBJECT
|
|
|
|
|
|
|
|
protected:
|
2014-07-08 20:46:24 +00:00
|
|
|
virtual ~nsHTMLURIRefObject();
|
|
|
|
|
2001-08-07 21:12:08 +00:00
|
|
|
nsCOMPtr<nsIDOMNode> mNode;
|
2013-03-10 08:00:33 +00:00
|
|
|
nsCOMPtr<nsIDOMMozNamedAttrMap> mAttributes;
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t mCurAttrIndex;
|
|
|
|
uint32_t mAttributeCnt;
|
2001-08-07 21:12:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nsresult NS_NewHTMLURIRefObject(nsIURIRefObject** aResult, nsIDOMNode* aNode);
|
|
|
|
|
|
|
|
#endif /* nsHTMLURIRefObject_h__ */
|
|
|
|
|