blob: 7ee335e346357123427833aeb70e64c099d7f709 [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"
namespace blink {
class 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_