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

Unified Diff: Source/core/page/Page.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/NetworkStateNotifierTest.cpp ('k') | Source/core/page/PageLifecycleNotifier.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/Page.h
diff --git a/Source/core/page/Page.h b/Source/core/page/Page.h
index c0bf5bfe39e49f0ed6242e56dd4639fb18a395a5..1326c2ab736c47ac1e5f1a410d0a8e0c63dc8c58 100644
--- a/Source/core/page/Page.h
+++ b/Source/core/page/Page.h
@@ -71,7 +71,7 @@ typedef uint64_t LinkHash;
float deviceScaleFactor(LocalFrame*);
-class Page FINAL : public NoBaseWillBeGarbageCollectedFinalized<Page>, public WillBeHeapSupplementable<Page>, public LifecycleContext<Page>, public SettingsDelegate {
+class Page final : public NoBaseWillBeGarbageCollectedFinalized<Page>, public WillBeHeapSupplementable<Page>, public LifecycleContext<Page>, public SettingsDelegate {
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(Page);
WTF_MAKE_NONCOPYABLE(Page);
friend class Settings;
@@ -239,7 +239,7 @@ private:
void setNeedsLayoutInAllFrames();
// SettingsDelegate overrides.
- virtual void settingsChanged(SettingsDelegate::ChangeType) OVERRIDE;
+ virtual void settingsChanged(SettingsDelegate::ChangeType) override;
PageAnimator m_animator;
const OwnPtr<AutoscrollController> m_autoscrollController;
« no previous file with comments | « Source/core/page/NetworkStateNotifierTest.cpp ('k') | Source/core/page/PageLifecycleNotifier.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698