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

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

Issue 478693005: Oilpan: Ship Oilpan for serviceworkers/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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/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;

Powered by Google App Engine
This is Rietveld 408576698