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

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

Issue 126793004: Update HTML classes to use OVERRIDE / FINAL when needed (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 11 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/HTMLOutputElement.h ('k') | Source/core/html/HTMLProgressElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLPlugInElement.h
diff --git a/Source/core/html/HTMLPlugInElement.h b/Source/core/html/HTMLPlugInElement.h
index 33a69a078fa92c898f1a093ff453d286bdd75b6e..382083438293b2c0d8791448445638cda5e466cb 100644
--- a/Source/core/html/HTMLPlugInElement.h
+++ b/Source/core/html/HTMLPlugInElement.h
@@ -61,7 +61,7 @@ protected:
// Node functions:
virtual void didMoveToNewDocument(Document& oldDocument) OVERRIDE;
- virtual bool dispatchBeforeLoadEvent(const String& sourceURL) OVERRIDE;
+ virtual bool dispatchBeforeLoadEvent(const String& sourceURL) OVERRIDE FINAL;
// Element functions:
virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE;
@@ -91,21 +91,21 @@ private:
// Node functions:
virtual bool canContainRangeEndPoint() const OVERRIDE { return false; }
- virtual bool willRespondToMouseClickEvents() OVERRIDE;
- virtual void defaultEventHandler(Event*) OVERRIDE;
- virtual void attach(const AttachContext& = AttachContext()) OVERRIDE;
- virtual void detach(const AttachContext& = AttachContext()) OVERRIDE;
- virtual void finishParsingChildren() OVERRIDE;
- virtual bool isPluginElement() const OVERRIDE;
+ virtual bool willRespondToMouseClickEvents() OVERRIDE FINAL;
+ virtual void defaultEventHandler(Event*) OVERRIDE FINAL;
+ virtual void attach(const AttachContext& = AttachContext()) OVERRIDE FINAL;
+ virtual void detach(const AttachContext& = AttachContext()) OVERRIDE FINAL;
+ virtual void finishParsingChildren() OVERRIDE FINAL;
+ virtual bool isPluginElement() const OVERRIDE FINAL;
// Element functions:
virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE;
virtual void willRecalcStyle(StyleRecalcChange) OVERRIDE FINAL;
- virtual bool supportsFocus() const OVERRIDE { return true; };
- virtual bool rendererIsFocusable() const OVERRIDE;
- virtual bool isKeyboardFocusable() const OVERRIDE;
- virtual void didAddUserAgentShadowRoot(ShadowRoot&) OVERRIDE;
- virtual void didAddShadowRoot(ShadowRoot&) OVERRIDE;
+ virtual bool supportsFocus() const OVERRIDE FINAL { return true; }
+ virtual bool rendererIsFocusable() const OVERRIDE FINAL;
+ virtual bool isKeyboardFocusable() const OVERRIDE FINAL;
+ virtual void didAddUserAgentShadowRoot(ShadowRoot&) OVERRIDE FINAL;
+ virtual void didAddShadowRoot(ShadowRoot&) OVERRIDE FINAL;
// Return any existing RenderWidget without triggering relayout, or 0 if it
// doesn't yet exist.
« no previous file with comments | « Source/core/html/HTMLOutputElement.h ('k') | Source/core/html/HTMLProgressElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698