Chromium Code Reviews| Index: Source/core/html/HTMLMarqueeElement.h |
| diff --git a/Source/core/html/HTMLMarqueeElement.h b/Source/core/html/HTMLMarqueeElement.h |
| index 5b32575111e4854f65eb545af5866208872dca04..68e6bfd5e6ec6de9854d39656b8229bc0d17da63 100644 |
| --- a/Source/core/html/HTMLMarqueeElement.h |
| +++ b/Source/core/html/HTMLMarqueeElement.h |
| @@ -23,43 +23,21 @@ |
| #ifndef HTMLMarqueeElement_h |
| #define HTMLMarqueeElement_h |
| -#include "core/dom/ActiveDOMObject.h" |
| #include "core/html/HTMLElement.h" |
| -#include "platform/Timer.h" |
| namespace blink { |
| -class RenderMarquee; |
| - |
| -class HTMLMarqueeElement FINAL : public HTMLElement, private ActiveDOMObject { |
| +class HTMLMarqueeElement FINAL : public HTMLElement { |
|
Mike West
2014/10/05 19:33:12
Nit: s/FINAL/final/
haraken
2014/10/06 00:08:47
Done.
|
| DEFINE_WRAPPERTYPEINFO(); |
| public: |
| static PassRefPtrWillBeRawPtr<HTMLMarqueeElement> create(Document&); |
| - int minimumDelay() const; |
| - |
| - // DOM Functions |
| - |
| - void start(); |
| - virtual void stop() OVERRIDE; |
| - |
| - void timerFired(Timer<HTMLMarqueeElement>*); |
| + virtual void attributeWillChange(const QualifiedName&, const AtomicString& oldValue, const AtomicString& newValue) OVERRIDE; |
|
Mike West
2014/10/05 19:33:12
Nit: s/OVERRIDE/override/ for all three methods he
haraken
2014/10/06 00:08:47
Done.
|
| + virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; |
| + virtual void removedFrom(ContainerNode*) OVERRIDE; |
| private: |
| explicit HTMLMarqueeElement(Document&); |
| - |
| - virtual void didMoveToNewDocument(Document& oldDocument) OVERRIDE; |
| - |
| - virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE; |
| - virtual void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) OVERRIDE; |
| - |
| - // ActiveDOMObject |
| - virtual void suspend() OVERRIDE; |
| - virtual void resume() OVERRIDE; |
| - |
| - virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE; |
| - |
| - RenderMarquee* renderMarquee() const; |
| }; |
| } // namespace blink |