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

Unified Diff: third_party/WebKit/Source/modules/serviceworkers/FetchEvent.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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: third_party/WebKit/Source/modules/serviceworkers/FetchEvent.h
diff --git a/third_party/WebKit/Source/modules/serviceworkers/FetchEvent.h b/third_party/WebKit/Source/modules/serviceworkers/FetchEvent.h
index 793c5cd8d4b90179ff672eed5bf456873c7b46fb..6f24f326a9e6579247a59047948f755fbfe10109 100644
--- a/third_party/WebKit/Source/modules/serviceworkers/FetchEvent.h
+++ b/third_party/WebKit/Source/modules/serviceworkers/FetchEvent.h
@@ -26,9 +26,9 @@ class RespondWithObserver;
class MODULES_EXPORT FetchEvent final : public ExtendableEvent {
DEFINE_WRAPPERTYPEINFO();
public:
- static PassRefPtrWillBeRawPtr<FetchEvent> create();
- static PassRefPtrWillBeRawPtr<FetchEvent> create(const AtomicString& type, const FetchEventInit&);
- static PassRefPtrWillBeRawPtr<FetchEvent> create(const AtomicString& type, const FetchEventInit&, RespondWithObserver*);
+ static RawPtr<FetchEvent> create();
+ static RawPtr<FetchEvent> create(const AtomicString& type, const FetchEventInit&);
+ static RawPtr<FetchEvent> create(const AtomicString& type, const FetchEventInit&, RespondWithObserver*);
Request* request() const;
String clientId() const;
@@ -45,8 +45,8 @@ protected:
FetchEvent(const AtomicString& type, const FetchEventInit&, RespondWithObserver*);
private:
- PersistentWillBeMember<RespondWithObserver> m_observer;
- PersistentWillBeMember<Request> m_request;
+ Member<RespondWithObserver> m_observer;
+ Member<Request> m_request;
String m_clientId;
bool m_isReload;
};

Powered by Google App Engine
This is Rietveld 408576698