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

Unified Diff: Source/core/dom/DocumentStyleSheetCollection.h

Issue 633573004: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/dom (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/dom/DocumentOrderedList.h ('k') | Source/core/dom/DocumentStyleSheetCollector.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/DocumentStyleSheetCollection.h
diff --git a/Source/core/dom/DocumentStyleSheetCollection.h b/Source/core/dom/DocumentStyleSheetCollection.h
index 6e7c99e3b11a0869a8b650f78d6ce81caf744c52..1c3dfc336e1e1b6e09d002adeb3056bed2d4ec44 100644
--- a/Source/core/dom/DocumentStyleSheetCollection.h
+++ b/Source/core/dom/DocumentStyleSheetCollection.h
@@ -36,7 +36,7 @@ class DocumentStyleSheetCollector;
class StyleEngine;
class TreeScope;
-class DocumentStyleSheetCollection FINAL : public TreeScopeStyleSheetCollection {
+class DocumentStyleSheetCollection final : public TreeScopeStyleSheetCollection {
WTF_MAKE_NONCOPYABLE(DocumentStyleSheetCollection);
WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
public:
@@ -48,7 +48,7 @@ public:
void updateActiveStyleSheets(StyleEngine*, StyleResolverUpdateMode);
void collectStyleSheets(StyleEngine*, DocumentStyleSheetCollector&);
- virtual void trace(Visitor* visitor) OVERRIDE
+ virtual void trace(Visitor* visitor) override
{
TreeScopeStyleSheetCollection::trace(visitor);
}
« no previous file with comments | « Source/core/dom/DocumentOrderedList.h ('k') | Source/core/dom/DocumentStyleSheetCollector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698