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; |