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

Unified Diff: Source/core/html/HTMLTextFormControlElementTest.cpp

Issue 1219013005: Fix virtual/override/final usage in Source/core/html/. (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/html/HTMLTextFormControlElement.h ('k') | Source/core/html/HTMLTitleElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLTextFormControlElementTest.cpp
diff --git a/Source/core/html/HTMLTextFormControlElementTest.cpp b/Source/core/html/HTMLTextFormControlElementTest.cpp
index c77d0a3b9c685b776e9407559ad28ae45d2ce897..d61733ac01499ea4342024546717473cbacfe66b 100644
--- a/Source/core/html/HTMLTextFormControlElementTest.cpp
+++ b/Source/core/html/HTMLTextFormControlElementTest.cpp
@@ -51,17 +51,17 @@ class DummyTextCheckerClient : public EmptyTextCheckerClient {
public:
~DummyTextCheckerClient() { }
- virtual bool shouldEraseMarkersAfterChangeSelection(TextCheckingType) const override { return false; }
+ bool shouldEraseMarkersAfterChangeSelection(TextCheckingType) const override { return false; }
};
class DummySpellCheckerClient : public EmptySpellCheckerClient {
public:
virtual ~DummySpellCheckerClient() { }
- virtual bool isContinuousSpellCheckingEnabled() override { return true; }
- virtual bool isGrammarCheckingEnabled() override { return true; }
+ bool isContinuousSpellCheckingEnabled() override { return true; }
+ bool isGrammarCheckingEnabled() override { return true; }
- virtual TextCheckerClient& textChecker() override { return m_dummyTextCheckerClient; }
+ TextCheckerClient& textChecker() override { return m_dummyTextCheckerClient; }
private:
DummyTextCheckerClient m_dummyTextCheckerClient;
« no previous file with comments | « Source/core/html/HTMLTextFormControlElement.h ('k') | Source/core/html/HTMLTitleElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698