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

Unified Diff: Source/web/AssociatedURLLoader.cpp

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/AssociatedURLLoader.h ('k') | Source/web/BackForwardClientImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/AssociatedURLLoader.cpp
diff --git a/Source/web/AssociatedURLLoader.cpp b/Source/web/AssociatedURLLoader.cpp
index a4b676d0574f80f891760203f305387f8bcd6cf1..576a97996cfc7cdac5cb3658223d17e9acfa062a 100644
--- a/Source/web/AssociatedURLLoader.cpp
+++ b/Source/web/AssociatedURLLoader.cpp
@@ -118,21 +118,21 @@ const HTTPHeaderSet& HTTPResponseHeaderValidator::blockedHeaders()
// This class bridges the interface differences between WebCore and WebKit loader clients.
// It forwards its ThreadableLoaderClient notifications to a WebURLLoaderClient.
-class AssociatedURLLoader::ClientAdapter FINAL : public DocumentThreadableLoaderClient {
+class AssociatedURLLoader::ClientAdapter final : public DocumentThreadableLoaderClient {
WTF_MAKE_NONCOPYABLE(ClientAdapter);
public:
static PassOwnPtr<ClientAdapter> create(AssociatedURLLoader*, WebURLLoaderClient*, const WebURLLoaderOptions&);
- virtual void didSendData(unsigned long long /*bytesSent*/, unsigned long long /*totalBytesToBeSent*/) OVERRIDE;
- virtual void willSendRequest(ResourceRequest& /*newRequest*/, const ResourceResponse& /*redirectResponse*/) OVERRIDE;
+ virtual void didSendData(unsigned long long /*bytesSent*/, unsigned long long /*totalBytesToBeSent*/) override;
+ virtual void willSendRequest(ResourceRequest& /*newRequest*/, const ResourceResponse& /*redirectResponse*/) override;
- virtual void didReceiveResponse(unsigned long, const ResourceResponse&) OVERRIDE;
- virtual void didDownloadData(int /*dataLength*/) OVERRIDE;
- virtual void didReceiveData(const char*, unsigned /*dataLength*/) OVERRIDE;
- virtual void didReceiveCachedMetadata(const char*, int /*dataLength*/) OVERRIDE;
- virtual void didFinishLoading(unsigned long /*identifier*/, double /*finishTime*/) OVERRIDE;
- virtual void didFail(const ResourceError&) OVERRIDE;
- virtual void didFailRedirectCheck() OVERRIDE;
+ virtual void didReceiveResponse(unsigned long, const ResourceResponse&) override;
+ virtual void didDownloadData(int /*dataLength*/) override;
+ virtual void didReceiveData(const char*, unsigned /*dataLength*/) override;
+ virtual void didReceiveCachedMetadata(const char*, int /*dataLength*/) override;
+ virtual void didFinishLoading(unsigned long /*identifier*/, double /*finishTime*/) override;
+ virtual void didFail(const ResourceError&) override;
+ virtual void didFailRedirectCheck() override;
// Sets an error to be reported back to the client, asychronously.
void setDelayedError(const ResourceError&);
« no previous file with comments | « Source/web/AssociatedURLLoader.h ('k') | Source/web/BackForwardClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698