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

Unified Diff: Source/core/html/HTMLAppletElement.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/HTMLAnchorElement.h ('k') | Source/core/html/HTMLAreaElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLAppletElement.h
diff --git a/Source/core/html/HTMLAppletElement.h b/Source/core/html/HTMLAppletElement.h
index d52ba27b7d6186151db044f55f7ba8df128083af..296ab31c85b202f38c51c4a113df8a6c37eff78d 100644
--- a/Source/core/html/HTMLAppletElement.h
+++ b/Source/core/html/HTMLAppletElement.h
@@ -35,26 +35,26 @@ public:
static PassRefPtrWillBeRawPtr<HTMLAppletElement> create(Document&, bool createdByParser);
protected:
- virtual LayoutPart* layoutPartForJSBindings() const override;
+ LayoutPart* layoutPartForJSBindings() const override;
private:
HTMLAppletElement(Document&, bool createdByParser);
- virtual void parseAttribute(const QualifiedName&, const AtomicString&) override;
- virtual bool isURLAttribute(const Attribute&) const override;
- virtual bool hasLegalLinkAttribute(const QualifiedName&) const override;
+ void parseAttribute(const QualifiedName&, const AtomicString&) override;
+ bool isURLAttribute(const Attribute&) const override;
+ bool hasLegalLinkAttribute(const QualifiedName&) const override;
- virtual bool layoutObjectIsNeeded(const ComputedStyle&) override;
- virtual LayoutObject* createLayoutObject(const ComputedStyle&) override;
+ bool layoutObjectIsNeeded(const ComputedStyle&) override;
+ LayoutObject* createLayoutObject(const ComputedStyle&) override;
- virtual LayoutPart* existingLayoutPart() const override;
- virtual void updateWidgetInternal() override;
+ LayoutPart* existingLayoutPart() const override;
+ void updateWidgetInternal() override;
bool canEmbedJava() const;
bool canEmbedURL(const KURL&) const;
- virtual bool shouldRegisterAsNamedItem() const override { return true; }
- virtual bool shouldRegisterAsExtraNamedItem() const override { return true; }
+ bool shouldRegisterAsNamedItem() const override { return true; }
+ bool shouldRegisterAsExtraNamedItem() const override { return true; }
};
} // namespace blink
« no previous file with comments | « Source/core/html/HTMLAnchorElement.h ('k') | Source/core/html/HTMLAreaElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698