| Index: Source/core/html/HTMLTimeElement.h
|
| diff --git a/Source/core/dom/GlobalEventHandlers.h b/Source/core/html/HTMLTimeElement.h
|
| similarity index 84%
|
| copy from Source/core/dom/GlobalEventHandlers.h
|
| copy to Source/core/html/HTMLTimeElement.h
|
| index 4df0ef0c48b0e9ea320f326463ef179de5aae4b8..ea1339a23bf6fa1435929aff0d85d25e5bc0fd97 100644
|
| --- a/Source/core/dom/GlobalEventHandlers.h
|
| +++ b/Source/core/html/HTMLTimeElement.h
|
| @@ -27,14 +27,21 @@
|
| * OF THE POSSIBILITY OF SUCH DAMAGE.
|
| */
|
|
|
| -#ifndef GlobalEventHandlers_h
|
| -#define GlobalEventHandlers_h
|
| +#ifndef HTMLTimeElement_h
|
| +#define HTMLTimeElement_h
|
| +
|
| +#include "core/html/HTMLElement.h"
|
|
|
| namespace WebCore {
|
|
|
| -namespace GlobalEventHandlers {
|
| -}
|
| +class HTMLTimeElement FINAL : public HTMLElement {
|
| +public:
|
| + static PassRefPtr<HTMLTimeElement> create(const QualifiedName&, Document&);
|
|
|
| -} // namespace
|
| +private:
|
| + HTMLTimeElement(const QualifiedName&, Document&);
|
| +};
|
| +
|
| +}
|
|
|
| #endif
|
|
|