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

Unified Diff: Source/modules/serviceworkers/Request.h

Issue 630403002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/modules/serviceworkers (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
Index: Source/modules/serviceworkers/Request.h
diff --git a/Source/modules/serviceworkers/Request.h b/Source/modules/serviceworkers/Request.h
index d5d79f26574408146d3189272165f81a67af5591..6b0a79648506ce65783e2a252653f28b59ca780c 100644
--- a/Source/modules/serviceworkers/Request.h
+++ b/Source/modules/serviceworkers/Request.h
@@ -23,7 +23,7 @@ class ResourceRequest;
struct ThreadableLoaderOptions;
class WebServiceWorkerRequest;
-class Request FINAL : public Body {
+class Request final : public Body {
DEFINE_WRAPPERTYPEINFO();
public:
virtual ~Request() { }
@@ -52,7 +52,7 @@ public:
void setBodyBlobHandle(PassRefPtr<BlobDataHandle>);
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
explicit Request(const Request&);
@@ -62,7 +62,7 @@ private:
static Request* createRequestWithRequestData(ExecutionContext*, FetchRequestData*, const RequestInit&, FetchRequestData::Mode, FetchRequestData::Credentials, ExceptionState&);
void clearHeaderList();
- virtual PassRefPtr<BlobDataHandle> blobDataHandle() OVERRIDE;
+ virtual PassRefPtr<BlobDataHandle> blobDataHandle() override;
const Member<FetchRequestData> m_request;
const Member<Headers> m_headers;
« no previous file with comments | « Source/modules/serviceworkers/NavigatorServiceWorker.h ('k') | Source/modules/serviceworkers/RespondWithObserver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698