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

Unified Diff: Source/core/frame/DeviceSingleWindowEventController.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/DOMWindowLifecycleNotifier.h ('k') | Source/core/frame/EventHandlerRegistry.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/DeviceSingleWindowEventController.h
diff --git a/Source/core/frame/DeviceSingleWindowEventController.h b/Source/core/frame/DeviceSingleWindowEventController.h
index 5b38c291b2d6f47c9be608a090e8150b310ac548..f90b08c4c577df6a9825c0eaa5b115c648cd9850 100644
--- a/Source/core/frame/DeviceSingleWindowEventController.h
+++ b/Source/core/frame/DeviceSingleWindowEventController.h
@@ -20,13 +20,13 @@ public:
virtual ~DeviceSingleWindowEventController();
// Inherited from DeviceEventControllerBase.
- virtual void didUpdateData() OVERRIDE;
+ virtual void didUpdateData() override;
virtual void trace(Visitor*);
// Inherited from DOMWindowLifecycleObserver.
- virtual void didAddEventListener(LocalDOMWindow*, const AtomicString&) OVERRIDE;
- virtual void didRemoveEventListener(LocalDOMWindow*, const AtomicString&) OVERRIDE;
- virtual void didRemoveAllEventListeners(LocalDOMWindow*) OVERRIDE;
+ virtual void didAddEventListener(LocalDOMWindow*, const AtomicString&) override;
+ virtual void didRemoveEventListener(LocalDOMWindow*, const AtomicString&) override;
+ virtual void didRemoveAllEventListeners(LocalDOMWindow*) override;
protected:
explicit DeviceSingleWindowEventController(Document&);
« no previous file with comments | « Source/core/frame/DOMWindowLifecycleNotifier.h ('k') | Source/core/frame/EventHandlerRegistry.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698