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

Unified Diff: Source/core/events/BeforeTextInsertedEvent.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/AutocompleteErrorEvent.h ('k') | Source/core/events/BeforeUnloadEvent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/BeforeTextInsertedEvent.h
diff --git a/Source/core/events/BeforeTextInsertedEvent.h b/Source/core/events/BeforeTextInsertedEvent.h
index fa074bebaa16539f9056a77daa868a0bf0b496ff..4490adcf5bf8c54d548ea341bc5326d2e93d4a55 100644
--- a/Source/core/events/BeforeTextInsertedEvent.h
+++ b/Source/core/events/BeforeTextInsertedEvent.h
@@ -32,15 +32,15 @@ namespace blink {
class BeforeTextInsertedEvent final : public Event {
public:
- virtual ~BeforeTextInsertedEvent();
+ ~BeforeTextInsertedEvent() override;
static PassRefPtrWillBeRawPtr<BeforeTextInsertedEvent> create(const String& text)
{
return adoptRefWillBeNoop(new BeforeTextInsertedEvent(text));
}
- virtual const AtomicString& interfaceName() const override;
- virtual bool isBeforeTextInsertedEvent() const override { return true; }
+ const AtomicString& interfaceName() const override;
+ bool isBeforeTextInsertedEvent() const override { return true; }
const String& text() const { return m_text; }
void setText(const String& s) { m_text = s; }
« no previous file with comments | « Source/core/events/AutocompleteErrorEvent.h ('k') | Source/core/events/BeforeUnloadEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698