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

Unified Diff: Source/modules/serviceworkers/Response.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/Response.h
diff --git a/Source/modules/serviceworkers/Response.h b/Source/modules/serviceworkers/Response.h
index d4204d9db7d92775f109215900190c916392ad07..c5d0bd24306077f4e302fc06be7feed4e5d93018 100644
--- a/Source/modules/serviceworkers/Response.h
+++ b/Source/modules/serviceworkers/Response.h
@@ -21,7 +21,7 @@ class ExceptionState;
class ResponseInit;
class WebServiceWorkerResponse;
-class Response FINAL : public Body {
+class Response final : public Body {
DEFINE_WRAPPERTYPEINFO();
public:
virtual ~Response() { }
@@ -48,14 +48,14 @@ public:
void populateWebServiceWorkerResponse(WebServiceWorkerResponse&);
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
explicit Response(const Response&);
explicit Response(ExecutionContext*);
Response(ExecutionContext*, FetchResponseData*);
- virtual PassRefPtr<BlobDataHandle> blobDataHandle() OVERRIDE;
+ virtual PassRefPtr<BlobDataHandle> blobDataHandle() override;
const Member<FetchResponseData> m_response;
const Member<Headers> m_headers;
« no previous file with comments | « Source/modules/serviceworkers/RespondWithObserver.cpp ('k') | Source/modules/serviceworkers/ServiceWorker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698