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

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

Issue 419213002: [Not for review] Implement a <blink> tag in Blink-in-JS Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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/css/html.css ('k') | Source/core/html/HTMLBlinkElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLBlinkElement.h
diff --git a/Source/core/html/HTMLBlinkElement.h b/Source/core/html/HTMLBlinkElement.h
new file mode 100644
index 0000000000000000000000000000000000000000..1f37f647777bf4df0de64837f6addf660dde9469
--- /dev/null
+++ b/Source/core/html/HTMLBlinkElement.h
@@ -0,0 +1,25 @@
+// 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 HTMLBlinkElement_h
+#define HTMLBlinkElement_h
+
+#include "core/html/HTMLElement.h"
+
+namespace blink {
+
+class HTMLBlinkElement FINAL : public HTMLElement {
+public:
+ static PassRefPtrWillBeRawPtr<HTMLBlinkElement> create(Document&);
+
+ virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
+ virtual void removedFrom(ContainerNode*) OVERRIDE;
+
+private:
+ explicit HTMLBlinkElement(Document&);
+};
+
+} // namespace blink
+
+#endif // HTMLBlinkElement_h
« no previous file with comments | « Source/core/css/html.css ('k') | Source/core/html/HTMLBlinkElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698