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

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

Issue 1219063013: Fix virtual/override/final usage in Source/core/dom/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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/ExecutionContextTask.h ('k') | Source/core/dom/Fullscreen.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/FirstLetterPseudoElement.h
diff --git a/Source/core/dom/FirstLetterPseudoElement.h b/Source/core/dom/FirstLetterPseudoElement.h
index 4528fcf8b2e4bb06f676b4cd9ee87778f1867e4a..1eaff1574345e44f81d324c46cad266b678971ac 100644
--- a/Source/core/dom/FirstLetterPseudoElement.h
+++ b/Source/core/dom/FirstLetterPseudoElement.h
@@ -42,7 +42,7 @@ public:
return adoptRefWillBeNoop(new FirstLetterPseudoElement(parent));
}
- virtual ~FirstLetterPseudoElement();
+ ~FirstLetterPseudoElement() override;
static LayoutObject* firstLetterTextLayoutObject(const Element&);
static unsigned firstLetterLength(const String&);
@@ -52,13 +52,13 @@ public:
void updateTextFragments();
- virtual void attach(const AttachContext& = AttachContext()) override;
- virtual void detach(const AttachContext& = AttachContext()) override;
+ void attach(const AttachContext& = AttachContext()) override;
+ void detach(const AttachContext& = AttachContext()) override;
private:
explicit FirstLetterPseudoElement(Element*);
- virtual void didRecalcStyle(StyleRecalcChange) override;
+ void didRecalcStyle(StyleRecalcChange) override;
void attachFirstLetterTextLayoutObjects();
ComputedStyle* styleForFirstLetter(LayoutObject*);
« no previous file with comments | « Source/core/dom/ExecutionContextTask.h ('k') | Source/core/dom/Fullscreen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698