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

Unified Diff: Source/core/html/forms/SearchInputType.h

Issue 635793002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/html (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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/forms/ResetInputType.h ('k') | Source/core/html/forms/SubmitInputType.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/forms/SearchInputType.h
diff --git a/Source/core/html/forms/SearchInputType.h b/Source/core/html/forms/SearchInputType.h
index 3a04c5fe1a1b6f17ed8f0b54a86aacb2c242573f..0691e0f5738421ec64d159bc77be37500e0a0e9a 100644
--- a/Source/core/html/forms/SearchInputType.h
+++ b/Source/core/html/forms/SearchInputType.h
@@ -36,7 +36,7 @@
namespace blink {
-class SearchInputType FINAL : public BaseTextInputType {
+class SearchInputType final : public BaseTextInputType {
public:
static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&);
@@ -44,16 +44,16 @@ public:
private:
SearchInputType(HTMLInputElement&);
- virtual void countUsage() OVERRIDE;
- virtual RenderObject* createRenderer(RenderStyle*) const OVERRIDE;
- virtual const AtomicString& formControlType() const OVERRIDE;
- virtual bool shouldRespectSpeechAttribute() OVERRIDE;
- virtual bool needsContainer() const OVERRIDE;
- virtual void createShadowSubtree() OVERRIDE;
- virtual void handleKeydownEvent(KeyboardEvent*) OVERRIDE;
- virtual void didSetValueByUserEdit(ValueChangeState) OVERRIDE;
- virtual bool supportsInputModeAttribute() const OVERRIDE;
- virtual void updateView() OVERRIDE;
+ virtual void countUsage() override;
+ virtual RenderObject* createRenderer(RenderStyle*) const override;
+ virtual const AtomicString& formControlType() const override;
+ virtual bool shouldRespectSpeechAttribute() override;
+ virtual bool needsContainer() const override;
+ virtual void createShadowSubtree() override;
+ virtual void handleKeydownEvent(KeyboardEvent*) override;
+ virtual void didSetValueByUserEdit(ValueChangeState) override;
+ virtual bool supportsInputModeAttribute() const override;
+ virtual void updateView() override;
void searchEventTimerFired(Timer<SearchInputType>*);
bool searchEventsShouldBeDispatched() const;
« no previous file with comments | « Source/core/html/forms/ResetInputType.h ('k') | Source/core/html/forms/SubmitInputType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698