blob: f4385565f9ee603695ef2ad25f40ec7936ae32a2 [file] [log] [blame]
// Copyright 2017 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 HTMLDataElement_h
#define HTMLDataElement_h
#include "core/html/HTMLElement.h"
namespace blink {
class CORE_EXPORT HTMLDataElement final : public HTMLElement {
DEFINE_WRAPPERTYPEINFO();
public:
static HTMLDataElement* Create(Document&);
private:
HTMLDataElement(Document&);
};
} // namespace blink
#endif // HTMLDataElement_h