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

Unified Diff: Source/web/ValidationMessageClientImpl.h

Issue 634893002: Replace OVERRIDE and FINAL with override and final in WebKit/public (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/web/UserMediaClientImpl.h ('k') | Source/web/WebDOMActivityLogger.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/ValidationMessageClientImpl.h
diff --git a/Source/web/ValidationMessageClientImpl.h b/Source/web/ValidationMessageClientImpl.h
index b8cf2c0240748fb2a17d6a4e0385233de6efca9d..5802ffba2cb09f50011cea2de092bbda5f730b64 100644
--- a/Source/web/ValidationMessageClientImpl.h
+++ b/Source/web/ValidationMessageClientImpl.h
@@ -37,24 +37,24 @@ namespace blink {
class FrameView;
class WebViewImpl;
-class ValidationMessageClientImpl FINAL : public NoBaseWillBeGarbageCollectedFinalized<ValidationMessageClientImpl>, public ValidationMessageClient {
+class ValidationMessageClientImpl final : public NoBaseWillBeGarbageCollectedFinalized<ValidationMessageClientImpl>, public ValidationMessageClient {
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(ValidationMessageClientImpl);
public:
static PassOwnPtrWillBeRawPtr<ValidationMessageClientImpl> create(WebViewImpl&);
virtual ~ValidationMessageClientImpl();
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
ValidationMessageClientImpl(WebViewImpl&);
void checkAnchorStatus(Timer<ValidationMessageClientImpl>*);
FrameView* currentView();
- virtual void showValidationMessage(const Element& anchor, const String& message, TextDirection messageDir, const String& subMessage, TextDirection subMessageDir) OVERRIDE;
- virtual void hideValidationMessage(const Element& anchor) OVERRIDE;
- virtual bool isValidationMessageVisible(const Element& anchor) OVERRIDE;
- virtual void documentDetached(const Document&) OVERRIDE;
- virtual void willBeDestroyed() OVERRIDE;
+ virtual void showValidationMessage(const Element& anchor, const String& message, TextDirection messageDir, const String& subMessage, TextDirection subMessageDir) override;
+ virtual void hideValidationMessage(const Element& anchor) override;
+ virtual bool isValidationMessageVisible(const Element& anchor) override;
+ virtual void documentDetached(const Document&) override;
+ virtual void willBeDestroyed() override;
WebViewImpl& m_webView;
RawPtrWillBeMember<const Element> m_currentAnchor;
« no previous file with comments | « Source/web/UserMediaClientImpl.h ('k') | Source/web/WebDOMActivityLogger.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698