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

Unified Diff: Source/core/css/FontFaceSet.h

Issue 1226293002: Fix virtual/override/final usage in Source/core/{animation,css,style}/. (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/css/FontFace.h ('k') | Source/core/css/FontFaceSet.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/FontFaceSet.h
diff --git a/Source/core/css/FontFaceSet.h b/Source/core/css/FontFaceSet.h
index 9209cf110d8218d06ada862d3362050db864b395..b3c9102608511f5cb412619315207de29d69187a 100644
--- a/Source/core/css/FontFaceSet.h
+++ b/Source/core/css/FontFaceSet.h
@@ -68,7 +68,7 @@ class FontFaceSet final : public EventTargetWithInlineData, public RefCountedSup
#endif
DEFINE_WRAPPERTYPEINFO();
public:
- virtual ~FontFaceSet();
+ ~FontFaceSet() override;
DEFINE_ATTRIBUTE_EVENT_LISTENER(loading);
DEFINE_ATTRIBUTE_EVENT_LISTENER(loadingdone);
@@ -88,8 +88,8 @@ public:
unsigned long size() const;
AtomicString status() const;
- virtual ExecutionContext* executionContext() const override;
- virtual const AtomicString& interfaceName() const override;
+ ExecutionContext* executionContext() const override;
+ const AtomicString& interfaceName() const override;
Document* document() const;
@@ -99,9 +99,9 @@ public:
void loadError(FontFace*);
// ActiveDOMObject
- virtual void suspend() override;
- virtual void resume() override;
- virtual void stop() override;
+ void suspend() override;
+ void resume() override;
+ void stop() override;
static PassRefPtrWillBeRawPtr<FontFaceSet> from(Document&);
static void didLayout(Document&);
« no previous file with comments | « Source/core/css/FontFace.h ('k') | Source/core/css/FontFaceSet.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698