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

Unified Diff: Source/modules/serviceworkers/FetchEvent.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/FetchEvent.h
diff --git a/Source/modules/serviceworkers/FetchEvent.h b/Source/modules/serviceworkers/FetchEvent.h
index 0510f212bbd6b24ac0f5b5579cf9dcd2556939e5..bd753b9e19c6553821adf344a34705de252697ae 100644
--- a/Source/modules/serviceworkers/FetchEvent.h
+++ b/Source/modules/serviceworkers/FetchEvent.h
@@ -21,10 +21,10 @@ class RespondWithObserver;
class FetchEvent FINAL : public Event {
public:
static PassRefPtrWillBeRawPtr<FetchEvent> create();
- static PassRefPtrWillBeRawPtr<FetchEvent> create(PassRefPtr<RespondWithObserver>, PassRefPtrWillBeRawPtr<Request>);
+ static PassRefPtrWillBeRawPtr<FetchEvent> create(PassRefPtr<RespondWithObserver>, Request*);
virtual ~FetchEvent() { }
- PassRefPtrWillBeRawPtr<Request> request() const;
+ Request* request() const;
bool isReload() const;
void respondWith(ScriptState*, const ScriptValue&);
@@ -37,11 +37,11 @@ public:
protected:
FetchEvent();
- FetchEvent(PassRefPtr<RespondWithObserver>, PassRefPtrWillBeRawPtr<Request>);
+ FetchEvent(PassRefPtr<RespondWithObserver>, Request*);
private:
RefPtr<RespondWithObserver> m_observer;
- RefPtrWillBeMember<Request> m_request;
+ PersistentWillBeMember<Request> m_request;
bool m_isReload;
};

Powered by Google App Engine
This is Rietveld 408576698