blob: e2f99b5b5cd81d8164f3a6baf268b3a356a7bbd3 [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 HTMLTimeElement_h
#define HTMLTimeElement_h
#include "core/html/HTMLElement.h"
namespace blink {
class CORE_EXPORT HTMLTimeElement final : public HTMLElement {
DEFINE_WRAPPERTYPEINFO();
public:
static HTMLTimeElement* Create(Document&);
private:
HTMLTimeElement(Document&);
};
} // namespace blink
#endif // HTMLTimeElement_h