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

Unified Diff: Source/core/testing/InternalSettings.h

Issue 636913002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/testing (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/testing/InternalProfilers.h ('k') | Source/core/testing/InternalSettings.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/testing/InternalSettings.h
diff --git a/Source/core/testing/InternalSettings.h b/Source/core/testing/InternalSettings.h
index 653b4cf9e0834ac3e4fe5c5aec0c07b2f404599f..e584db44d69f185d4300234ed30cf1ae089848f1 100644
--- a/Source/core/testing/InternalSettings.h
+++ b/Source/core/testing/InternalSettings.h
@@ -44,10 +44,10 @@ class Page;
class Settings;
#if ENABLE(OILPAN)
-class InternalSettings FINAL : public InternalSettingsGenerated, public HeapSupplement<Page> {
+class InternalSettings final : public InternalSettingsGenerated, public HeapSupplement<Page> {
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(InternalSettings);
#else
-class InternalSettings FINAL : public InternalSettingsGenerated {
+class InternalSettings final : public InternalSettingsGenerated {
#endif
DEFINE_WRAPPERTYPEINFO();
public:
@@ -120,7 +120,7 @@ public:
void setPseudoClassesInMatchingCriteriaInAuthorShadowTreesEnabled(bool);
void setLaxMixedContentCheckingEnabled(bool);
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
void setAvailablePointerTypes(const String&, ExceptionState&);
void setPrimaryPointerType(const String&, ExceptionState&);
« no previous file with comments | « Source/core/testing/InternalProfilers.h ('k') | Source/core/testing/InternalSettings.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698