Index: Source/modules/serviceworkers/FetchEvent.cpp |
diff --git a/Source/modules/serviceworkers/FetchEvent.cpp b/Source/modules/serviceworkers/FetchEvent.cpp |
index 3a4897c7c02bb12a3d5c8b121d68cd557453d37d..d337f1f410c78098ef882f8f606bfc0552b675c8 100644 |
--- a/Source/modules/serviceworkers/FetchEvent.cpp |
+++ b/Source/modules/serviceworkers/FetchEvent.cpp |
@@ -21,9 +21,9 @@ PassRefPtrWillBeRawPtr<FetchEvent> FetchEvent::create(PassRefPtr<RespondWithObse |
return adoptRefWillBeNoop(new FetchEvent(observer, request)); |
} |
-Request* FetchEvent::request() const |
+PassRefPtr<Request> FetchEvent::request() const |
{ |
- return m_request.get(); |
+ return m_request; |
} |
bool FetchEvent::isReload() const |