| 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
|
|
|