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

Unified Diff: Source/web/WebTextCheckingCompletionImpl.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/WebSocketImpl.h ('k') | Source/web/WebViewImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebTextCheckingCompletionImpl.h
diff --git a/Source/web/WebTextCheckingCompletionImpl.h b/Source/web/WebTextCheckingCompletionImpl.h
index e1c8bc253b8f0368949bcf77ece950b96d2bcf1c..11b3810087def46d115be3f00c09b1a114267451 100644
--- a/Source/web/WebTextCheckingCompletionImpl.h
+++ b/Source/web/WebTextCheckingCompletionImpl.h
@@ -40,15 +40,15 @@ namespace blink {
class EditorClientImpl;
-class WebTextCheckingCompletionImpl FINAL : public WebTextCheckingCompletion {
+class WebTextCheckingCompletionImpl final : public WebTextCheckingCompletion {
public:
explicit WebTextCheckingCompletionImpl(PassRefPtrWillBeRawPtr<TextCheckingRequest> request)
: m_request(request)
{
}
- virtual void didFinishCheckingText(const WebVector<WebTextCheckingResult>&) OVERRIDE;
- virtual void didCancelCheckingText() OVERRIDE;
+ virtual void didFinishCheckingText(const WebVector<WebTextCheckingResult>&) override;
+ virtual void didCancelCheckingText() override;
private:
virtual ~WebTextCheckingCompletionImpl() { }
« no previous file with comments | « Source/web/WebSocketImpl.h ('k') | Source/web/WebViewImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698