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

Unified Diff: Source/core/frame/DOMWindowLifecycleNotifier.h

Issue 635853002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/frame (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/frame/DOMTimer.h ('k') | Source/core/frame/DeviceSingleWindowEventController.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/DOMWindowLifecycleNotifier.h
diff --git a/Source/core/frame/DOMWindowLifecycleNotifier.h b/Source/core/frame/DOMWindowLifecycleNotifier.h
index b9c4eb2dc804eaa2cceedc52325504eb13830faa..6a7905838af3f3026d969781dc2f4d3a05425be7 100644
--- a/Source/core/frame/DOMWindowLifecycleNotifier.h
+++ b/Source/core/frame/DOMWindowLifecycleNotifier.h
@@ -36,7 +36,7 @@ namespace blink {
class LocalDOMWindow;
-class DOMWindowLifecycleNotifier FINAL : public LifecycleNotifier<LocalDOMWindow> {
+class DOMWindowLifecycleNotifier final : public LifecycleNotifier<LocalDOMWindow> {
public:
static PassOwnPtr<DOMWindowLifecycleNotifier> create(LocalDOMWindow*);
@@ -44,8 +44,8 @@ public:
void notifyRemoveEventListener(LocalDOMWindow*, const AtomicString& eventType);
void notifyRemoveAllEventListeners(LocalDOMWindow*);
- virtual void addObserver(Observer*) OVERRIDE;
- virtual void removeObserver(Observer*) OVERRIDE;
+ virtual void addObserver(Observer*) override;
+ virtual void removeObserver(Observer*) override;
private:
explicit DOMWindowLifecycleNotifier(LocalDOMWindow*);
« no previous file with comments | « Source/core/frame/DOMTimer.h ('k') | Source/core/frame/DeviceSingleWindowEventController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698