| Index: Source/modules/serviceworkers/RespondWithObserver.h
|
| diff --git a/Source/modules/serviceworkers/RespondWithObserver.h b/Source/modules/serviceworkers/RespondWithObserver.h
|
| index 4faf2c1f184a0148cb0b44379c17fab8984f5018..8058968967d428744f92f6c93d5a76b05d8b77d3 100644
|
| --- a/Source/modules/serviceworkers/RespondWithObserver.h
|
| +++ b/Source/modules/serviceworkers/RespondWithObserver.h
|
| @@ -19,6 +19,7 @@ class ScriptValue;
|
|
|
| // This class observes the service worker's handling of a FetchEvent and
|
| // notifies the client.
|
| +// FIXME: Oilpan: Move RespondWithObserver to oilpan's heap.
|
| class RespondWithObserver FINAL : public ContextLifecycleObserver, public RefCounted<RespondWithObserver> {
|
| public:
|
| static PassRefPtr<RespondWithObserver> create(ExecutionContext*, int eventID);
|
| @@ -42,7 +43,7 @@ private:
|
|
|
| // Sends a response back to the client. The null response means to fallback
|
| // to native.
|
| - void sendResponse(PassRefPtrWillBeRawPtr<Response>);
|
| + void sendResponse(Response*);
|
|
|
| int m_eventID;
|
|
|
|
|