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

Unified Diff: Source/core/dom/StyleEngine.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/StringCallback.cpp ('k') | Source/core/dom/TemplateContentDocumentFragment.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/StyleEngine.h
diff --git a/Source/core/dom/StyleEngine.h b/Source/core/dom/StyleEngine.h
index d82ae5dac1882563db4170ad32e99e1a2557a862..5afe9066b4e566c89345c275b06ca60213d39f84 100644
--- a/Source/core/dom/StyleEngine.h
+++ b/Source/core/dom/StyleEngine.h
@@ -52,7 +52,7 @@ class StyleRuleFontFace;
class StyleSheet;
class StyleSheetContents;
-class StyleEngine FINAL : public CSSFontSelectorClient {
+class StyleEngine final : public CSSFontSelectorClient {
WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
public:
@@ -175,11 +175,11 @@ public:
bool hasOnlyScopedResolverForDocument() const { return m_scopedStyleResolvers.size() == 1; }
void collectScopedStyleFeaturesTo(RuleFeatureSet&) const;
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
// CSSFontSelectorClient implementation.
- virtual void fontsNeedUpdate(CSSFontSelector*) OVERRIDE;
+ virtual void fontsNeedUpdate(CSSFontSelector*) override;
private:
StyleEngine(Document&);
« no previous file with comments | « Source/core/dom/StringCallback.cpp ('k') | Source/core/dom/TemplateContentDocumentFragment.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698