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

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

Issue 635793002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/html (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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/HTMLModElement.h ('k') | Source/core/html/HTMLNoScriptElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLNoEmbedElement.h
diff --git a/Source/core/html/HTMLNoEmbedElement.h b/Source/core/html/HTMLNoEmbedElement.h
index d920bd1b8d863274cb173cb49b03f513ef35cfd2..313fa622fbe2977494a8bea0f59791b638d1b981 100644
--- a/Source/core/html/HTMLNoEmbedElement.h
+++ b/Source/core/html/HTMLNoEmbedElement.h
@@ -37,14 +37,14 @@ namespace blink {
// <noembed> is an HTMLElement in script, but we use a separate interface here
// so HTMLElement's rendererIsNeeded doesn't need to know about it.
-class HTMLNoEmbedElement FINAL : public HTMLElement {
+class HTMLNoEmbedElement final : public HTMLElement {
public:
DECLARE_NODE_FACTORY(HTMLNoEmbedElement);
private:
explicit HTMLNoEmbedElement(Document&);
- virtual bool rendererIsNeeded(const RenderStyle&) OVERRIDE;
+ virtual bool rendererIsNeeded(const RenderStyle&) override;
};
} // namespace
« no previous file with comments | « Source/core/html/HTMLModElement.h ('k') | Source/core/html/HTMLNoScriptElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698