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

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

Issue 1219013005: Fix virtual/override/final usage in Source/core/html/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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/html/HTMLHtmlElement.h ('k') | Source/core/html/HTMLImageElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLIFrameElement.h
diff --git a/Source/core/html/HTMLIFrameElement.h b/Source/core/html/HTMLIFrameElement.h
index b916844fb99ce16f74b07780a3eb0ed25ca83df4..fcb6b4859ef026f8539d5c517cc25043e97d6a0d 100644
--- a/Source/core/html/HTMLIFrameElement.h
+++ b/Source/core/html/HTMLIFrameElement.h
@@ -35,28 +35,28 @@ class HTMLIFrameElement final : public HTMLFrameElementBase, public DOMSettableT
public:
DECLARE_NODE_FACTORY(HTMLIFrameElement);
DECLARE_VIRTUAL_TRACE();
- virtual ~HTMLIFrameElement();
+ ~HTMLIFrameElement() override;
DOMSettableTokenList* sandbox() const;
private:
explicit HTMLIFrameElement(Document&);
- virtual void parseAttribute(const QualifiedName&, const AtomicString&) override;
- virtual void attributeWillChange(const QualifiedName&, const AtomicString& oldValue, const AtomicString& newValue) override;
- virtual bool isPresentationAttribute(const QualifiedName&) const override;
- virtual void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) override;
+ void parseAttribute(const QualifiedName&, const AtomicString&) override;
+ void attributeWillChange(const QualifiedName&, const AtomicString& oldValue, const AtomicString& newValue) override;
+ bool isPresentationAttribute(const QualifiedName&) const override;
+ void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) override;
- virtual InsertionNotificationRequest insertedInto(ContainerNode*) override;
- virtual void removedFrom(ContainerNode*) override;
+ InsertionNotificationRequest insertedInto(ContainerNode*) override;
+ void removedFrom(ContainerNode*) override;
- virtual bool layoutObjectIsNeeded(const ComputedStyle&) override;
- virtual LayoutObject* createLayoutObject(const ComputedStyle&) override;
+ bool layoutObjectIsNeeded(const ComputedStyle&) override;
+ LayoutObject* createLayoutObject(const ComputedStyle&) override;
- virtual bool loadedNonEmptyDocument() const override { return m_didLoadNonEmptyDocument; }
- virtual void didLoadNonEmptyDocument() override { m_didLoadNonEmptyDocument = true; }
- virtual bool isInteractiveContent() const override;
+ bool loadedNonEmptyDocument() const override { return m_didLoadNonEmptyDocument; }
+ void didLoadNonEmptyDocument() override { m_didLoadNonEmptyDocument = true; }
+ bool isInteractiveContent() const override;
- virtual void valueChanged() override;
+ void valueChanged() override;
AtomicString m_name;
bool m_didLoadNonEmptyDocument;
« no previous file with comments | « Source/core/html/HTMLHtmlElement.h ('k') | Source/core/html/HTMLImageElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698