blob: c9358ce62984b324f3d9f896d320c63efefd1916 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_DOM_CHILD_NODE_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_DOM_CHILD_NODE_H_
#include "third_party/blink/renderer/core/dom/node.h"
#include "third_party/blink/renderer/platform/wtf/allocator.h"
namespace blink {
class ChildNode {
STATIC_ONLY(ChildNode);
public:
static void before(Node& node,
const HeapVector<NodeOrString>& nodes,
ExceptionState& exception_state) {
return node.Before(nodes, exception_state);
}
static void after(Node& node,
const HeapVector<NodeOrString>& nodes,
ExceptionState& exception_state) {
return node.After(nodes, exception_state);
}
static void replaceWith(Node& node,
const HeapVector<NodeOrString>& nodes,
ExceptionState& exception_state) {
return node.ReplaceWith(nodes, exception_state);
}
static void remove(Node& node, ExceptionState& exception_state) {
return node.remove(exception_state);
}
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_CORE_DOM_CHILD_NODE_H_