2015-05-03 19:32:37 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-11-05 16:58:04 +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/. */
|
|
|
|
|
2013-01-04 17:02:14 +00:00
|
|
|
#ifndef mozilla_dom_Comment_h
|
|
|
|
#define mozilla_dom_Comment_h
|
|
|
|
|
2013-05-29 20:43:41 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2012-11-05 16:58:04 +00:00
|
|
|
#include "nsIDOMComment.h"
|
|
|
|
#include "nsGenericDOMDataNode.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
class Comment final : public nsGenericDOMDataNode,
|
2015-03-27 18:52:19 +00:00
|
|
|
public nsIDOMComment
|
2012-11-05 16:58:04 +00:00
|
|
|
{
|
2013-04-04 12:02:22 +00:00
|
|
|
private:
|
|
|
|
void Init()
|
2013-01-04 17:02:14 +00:00
|
|
|
{
|
2015-02-09 22:34:50 +00:00
|
|
|
MOZ_ASSERT(mNodeInfo->NodeType() == nsIDOMNode::COMMENT_NODE,
|
|
|
|
"Bad NodeType in aNodeInfo");
|
2013-01-04 17:02:14 +00:00
|
|
|
}
|
2013-04-04 12:02:22 +00:00
|
|
|
|
2014-07-08 21:23:16 +00:00
|
|
|
virtual ~Comment();
|
|
|
|
|
2013-04-04 12:02:22 +00:00
|
|
|
public:
|
2014-09-02 00:49:25 +00:00
|
|
|
explicit Comment(already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo)
|
2013-04-04 12:02:22 +00:00
|
|
|
: nsGenericDOMDataNode(aNodeInfo)
|
|
|
|
{
|
|
|
|
Init();
|
|
|
|
}
|
|
|
|
|
2014-09-02 00:49:25 +00:00
|
|
|
explicit Comment(nsNodeInfoManager* aNodeInfoManager)
|
2013-04-04 12:02:22 +00:00
|
|
|
: nsGenericDOMDataNode(aNodeInfoManager->GetCommentNodeInfo())
|
|
|
|
{
|
|
|
|
Init();
|
|
|
|
}
|
|
|
|
|
2012-11-05 16:58:04 +00:00
|
|
|
// nsISupports
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
// nsIDOMNode
|
|
|
|
NS_FORWARD_NSIDOMNODE_TO_NSINODE
|
|
|
|
|
|
|
|
// nsIDOMCharacterData
|
|
|
|
NS_FORWARD_NSIDOMCHARACTERDATA(nsGenericDOMDataNode::)
|
2013-07-17 14:09:04 +00:00
|
|
|
using nsGenericDOMDataNode::SetData; // Prevent hiding overloaded virtual function.
|
2012-11-05 16:58:04 +00:00
|
|
|
|
|
|
|
// nsIDOMComment
|
|
|
|
// Empty interface
|
|
|
|
|
|
|
|
// nsINode
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual bool IsNodeOfType(uint32_t aFlags) const override;
|
2012-11-05 16:58:04 +00:00
|
|
|
|
2014-06-20 02:01:40 +00:00
|
|
|
virtual nsGenericDOMDataNode* CloneDataNode(mozilla::dom::NodeInfo *aNodeInfo,
|
2015-03-21 16:28:04 +00:00
|
|
|
bool aCloneText) const override;
|
2012-11-05 16:58:04 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual nsIDOMNode* AsDOMNode() override { return this; }
|
2012-11-05 16:58:04 +00:00
|
|
|
#ifdef DEBUG
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual void List(FILE* out, int32_t aIndent) const override;
|
2012-11-05 16:58:04 +00:00
|
|
|
virtual void DumpContent(FILE* out = stdout, int32_t aIndent = 0,
|
2015-03-21 16:28:04 +00:00
|
|
|
bool aDumpAll = true) const override
|
2012-11-05 16:58:04 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
2013-01-04 17:02:14 +00:00
|
|
|
|
2013-05-13 13:22:30 +00:00
|
|
|
static already_AddRefed<Comment>
|
|
|
|
Constructor(const GlobalObject& aGlobal, const nsAString& aData,
|
|
|
|
ErrorResult& aRv);
|
|
|
|
|
2013-01-04 17:02:14 +00:00
|
|
|
protected:
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual JSObject* WrapNode(JSContext *aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2012-11-05 16:58:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2013-01-04 17:02:14 +00:00
|
|
|
#endif // mozilla_dom_Comment_h
|