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

Unified Diff: Source/core/loader/WorkerLoaderClientBridgeSyncHelper.h

Issue 638503003: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/loader (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/loader/WorkerLoaderClientBridge.h ('k') | Source/core/loader/WorkerThreadableLoader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/loader/WorkerLoaderClientBridgeSyncHelper.h
diff --git a/Source/core/loader/WorkerLoaderClientBridgeSyncHelper.h b/Source/core/loader/WorkerLoaderClientBridgeSyncHelper.h
index 166ca2771bb64dfc1a91501a2da9f822b1774240..d612bbcb4dbfa5f239b6086aa13f742ba200078a 100644
--- a/Source/core/loader/WorkerLoaderClientBridgeSyncHelper.h
+++ b/Source/core/loader/WorkerLoaderClientBridgeSyncHelper.h
@@ -54,15 +54,15 @@ public:
void run();
// Called on the main thread.
- virtual void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) OVERRIDE;
- virtual void didReceiveResponse(unsigned long identifier, const ResourceResponse&) OVERRIDE;
- virtual void didReceiveData(const char*, unsigned dataLength) OVERRIDE;
- virtual void didDownloadData(int 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 didFailAccessControlCheck(const ResourceError&) OVERRIDE;
- virtual void didFailRedirectCheck() OVERRIDE;
+ virtual void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) override;
+ virtual void didReceiveResponse(unsigned long identifier, const ResourceResponse&) override;
+ virtual void didReceiveData(const char*, unsigned dataLength) override;
+ virtual void didDownloadData(int 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 didFailAccessControlCheck(const ResourceError&) override;
+ virtual void didFailRedirectCheck() override;
private:
WorkerLoaderClientBridgeSyncHelper(ThreadableLoaderClient&, PassOwnPtr<blink::WebWaitableEvent>);
« no previous file with comments | « Source/core/loader/WorkerLoaderClientBridge.h ('k') | Source/core/loader/WorkerThreadableLoader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698