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

Unified Diff: Source/core/events/FocusEvent.h

Issue 1232333002: Fix virtual/override/final usage in the rest of Source/core/. (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/events/EventTarget.h ('k') | Source/core/events/GenericEventQueue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/FocusEvent.h
diff --git a/Source/core/events/FocusEvent.h b/Source/core/events/FocusEvent.h
index 26dcb04bd78cf18c9a2d8dd37445b1d785eebb06..d59a7d83b4530c6e064dfc93e9f8be661bc4d08b 100644
--- a/Source/core/events/FocusEvent.h
+++ b/Source/core/events/FocusEvent.h
@@ -53,8 +53,8 @@ public:
EventTarget* relatedTarget() const { return m_relatedTarget.get(); }
void setRelatedTarget(EventTarget* relatedTarget) { m_relatedTarget = relatedTarget; }
- virtual const AtomicString& interfaceName() const override;
- virtual bool isFocusEvent() const override;
+ const AtomicString& interfaceName() const override;
+ bool isFocusEvent() const override;
DECLARE_VIRTUAL_TRACE();
@@ -74,7 +74,7 @@ public:
private:
explicit FocusEventDispatchMediator(PassRefPtrWillBeRawPtr<FocusEvent>);
FocusEvent& event() const { return static_cast<FocusEvent&>(EventDispatchMediator::event()); }
- virtual bool dispatchEvent(EventDispatcher&) const override;
+ bool dispatchEvent(EventDispatcher&) const override;
};
class BlurEventDispatchMediator final : public EventDispatchMediator {
@@ -83,7 +83,7 @@ public:
private:
explicit BlurEventDispatchMediator(PassRefPtrWillBeRawPtr<FocusEvent>);
FocusEvent& event() const { return static_cast<FocusEvent&>(EventDispatchMediator::event()); }
- virtual bool dispatchEvent(EventDispatcher&) const override;
+ bool dispatchEvent(EventDispatcher&) const override;
};
class FocusInEventDispatchMediator final : public EventDispatchMediator {
@@ -92,7 +92,7 @@ public:
private:
explicit FocusInEventDispatchMediator(PassRefPtrWillBeRawPtr<FocusEvent>);
FocusEvent& event() const { return static_cast<FocusEvent&>(EventDispatchMediator::event()); }
- virtual bool dispatchEvent(EventDispatcher&) const override;
+ bool dispatchEvent(EventDispatcher&) const override;
};
class FocusOutEventDispatchMediator final : public EventDispatchMediator {
@@ -101,7 +101,7 @@ public:
private:
explicit FocusOutEventDispatchMediator(PassRefPtrWillBeRawPtr<FocusEvent>);
FocusEvent& event() const { return static_cast<FocusEvent&>(EventDispatchMediator::event()); }
- virtual bool dispatchEvent(EventDispatcher&) const override;
+ bool dispatchEvent(EventDispatcher&) const override;
};
} // namespace blink
« no previous file with comments | « Source/core/events/EventTarget.h ('k') | Source/core/events/GenericEventQueue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698