Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(598)

Unified Diff: Source/core/html/HTMLTimeElement.h

Issue 28953005: Add support for <time> (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/html/HTMLTagNames.in ('k') | Source/core/html/HTMLTimeElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « Source/core/html/HTMLTagNames.in ('k') | Source/core/html/HTMLTimeElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698