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

Unified Diff: Source/core/html/HTMLSourceElement.cpp

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/HTMLSourceElement.h ('k') | Source/core/html/HTMLStyleElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLSourceElement.cpp
diff --git a/Source/core/html/HTMLSourceElement.cpp b/Source/core/html/HTMLSourceElement.cpp
index 6c26886b0740d14a644256ea56bd2512fa2f4fe8..52925b77cb579ab81c87bce8d93a39d864430ccc 100644
--- a/Source/core/html/HTMLSourceElement.cpp
+++ b/Source/core/html/HTMLSourceElement.cpp
@@ -47,17 +47,17 @@ static SourceEventSender& sourceErrorEventSender()
return sharedErrorEventSender;
}
-class HTMLSourceElement::Listener FINAL : public MediaQueryListListener {
+class HTMLSourceElement::Listener final : public MediaQueryListListener {
public:
explicit Listener(HTMLSourceElement* element) : m_element(element) { }
- virtual void notifyMediaQueryChanged() OVERRIDE
+ virtual void notifyMediaQueryChanged() override
{
if (m_element)
m_element->notifyMediaQueryChanged();
}
void clearElement() { m_element = nullptr; }
- virtual void trace(Visitor* visitor) OVERRIDE
+ virtual void trace(Visitor* visitor) override
{
visitor->trace(m_element);
MediaQueryListListener::trace(visitor);
« no previous file with comments | « Source/core/html/HTMLSourceElement.h ('k') | Source/core/html/HTMLStyleElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698