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

Unified Diff: Source/core/page/PageLifecycleNotifier.h

Issue 634883002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/page (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/page/Page.h ('k') | Source/core/page/PagePopupController.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/PageLifecycleNotifier.h
diff --git a/Source/core/page/PageLifecycleNotifier.h b/Source/core/page/PageLifecycleNotifier.h
index 6ebbc835354babf8b5558d4bc60a796d8b9bf944..b743b2c4fa4a61d76292c0d21f21ab4c162601c6 100644
--- a/Source/core/page/PageLifecycleNotifier.h
+++ b/Source/core/page/PageLifecycleNotifier.h
@@ -36,15 +36,15 @@ namespace blink {
class Page;
class LocalFrame;
-class PageLifecycleNotifier FINAL : public LifecycleNotifier<Page> {
+class PageLifecycleNotifier final : public LifecycleNotifier<Page> {
public:
static PassOwnPtr<PageLifecycleNotifier> create(Page*);
void notifyPageVisibilityChanged();
void notifyDidCommitLoad(LocalFrame*);
- virtual void addObserver(Observer*) OVERRIDE;
- virtual void removeObserver(Observer*) OVERRIDE;
+ virtual void addObserver(Observer*) override;
+ virtual void removeObserver(Observer*) override;
private:
explicit PageLifecycleNotifier(Page*);
« no previous file with comments | « Source/core/page/Page.h ('k') | Source/core/page/PagePopupController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698