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

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

Issue 699703002: Clean up virtual function in Source/html (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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 | « no previous file | Source/core/html/HTMLUnknownElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLMarqueeElement.h
diff --git a/Source/core/html/HTMLMarqueeElement.h b/Source/core/html/HTMLMarqueeElement.h
index 083380a8a1379b5fd4e104d799fe40e663880238..f0890dc72093d1bf68ab4dd6dcd9658aa35fefb2 100644
--- a/Source/core/html/HTMLMarqueeElement.h
+++ b/Source/core/html/HTMLMarqueeElement.h
@@ -32,9 +32,9 @@ class HTMLMarqueeElement final : public HTMLElement {
public:
static PassRefPtrWillBeRawPtr<HTMLMarqueeElement> create(Document&);
- virtual void attributeWillChange(const QualifiedName&, const AtomicString& oldValue, const AtomicString& newValue) final;
adamk 2014/11/11 17:52:36 I don't think dropping these finals is worthwhile.
- virtual InsertionNotificationRequest insertedInto(ContainerNode*) final;
- virtual void removedFrom(ContainerNode*) final;
+ virtual void attributeWillChange(const QualifiedName&, const AtomicString& oldValue, const AtomicString& newValue);
+ virtual InsertionNotificationRequest insertedInto(ContainerNode*);
+ virtual void removedFrom(ContainerNode*);
private:
explicit HTMLMarqueeElement(Document&);
« no previous file with comments | « no previous file | Source/core/html/HTMLUnknownElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698