| Index: Source/core/html/HTMLMarqueeElement.h
|
| diff --git a/Source/core/html/HTMLMarqueeElement.h b/Source/core/html/HTMLMarqueeElement.h
|
| index db1c7c3f2912f5b8a2cecf28bf440dd0668e9f49..66402c87ffd7652b3cd6031bd8002c08a300da28 100644
|
| --- a/Source/core/html/HTMLMarqueeElement.h
|
| +++ b/Source/core/html/HTMLMarqueeElement.h
|
| @@ -37,30 +37,12 @@ class HTMLMarqueeElement FINAL : public HTMLElement, private ActiveDOMObject {
|
| 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;
|
| + 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
|
|
|