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

Side by Side Diff: third_party/WebKit/Source/modules/serviceworkers/FetchEvent.h

Issue 1864243004: Remove RawPtr from Source/modules Part 2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef FetchEvent_h 5 #ifndef FetchEvent_h
6 #define FetchEvent_h 6 #define FetchEvent_h
7 7
8 #include "bindings/core/v8/ScriptPromise.h" 8 #include "bindings/core/v8/ScriptPromise.h"
9 #include "modules/EventModules.h" 9 #include "modules/EventModules.h"
10 #include "modules/ModulesExport.h" 10 #include "modules/ModulesExport.h"
11 #include "modules/fetch/Request.h" 11 #include "modules/fetch/Request.h"
12 #include "modules/serviceworkers/ExtendableEvent.h" 12 #include "modules/serviceworkers/ExtendableEvent.h"
13 #include "modules/serviceworkers/FetchEventInit.h" 13 #include "modules/serviceworkers/FetchEventInit.h"
14 #include "modules/serviceworkers/RespondWithObserver.h" 14 #include "modules/serviceworkers/RespondWithObserver.h"
15 #include "platform/heap/Handle.h" 15 #include "platform/heap/Handle.h"
16 16
17 namespace blink { 17 namespace blink {
18 18
19 class ExceptionState; 19 class ExceptionState;
20 class Request; 20 class Request;
21 class RespondWithObserver; 21 class RespondWithObserver;
22 22
23 // A fetch event is dispatched by the client to a service worker's script 23 // A fetch event is dispatched by the client to a service worker's script
24 // context. RespondWithObserver can be used to notify the client about the 24 // context. RespondWithObserver can be used to notify the client about the
25 // service worker's response. 25 // service worker's response.
26 class MODULES_EXPORT FetchEvent final : public ExtendableEvent { 26 class MODULES_EXPORT FetchEvent final : public ExtendableEvent {
27 DEFINE_WRAPPERTYPEINFO(); 27 DEFINE_WRAPPERTYPEINFO();
28 public: 28 public:
29 static RawPtr<FetchEvent> create(); 29 static FetchEvent* create();
30 static RawPtr<FetchEvent> create(const AtomicString& type, const FetchEventI nit&); 30 static FetchEvent* create(const AtomicString& type, const FetchEventInit&);
31 static RawPtr<FetchEvent> create(const AtomicString& type, const FetchEventI nit&, RespondWithObserver*); 31 static FetchEvent* create(const AtomicString& type, const FetchEventInit&, R espondWithObserver*);
32 32
33 Request* request() const; 33 Request* request() const;
34 String clientId() const; 34 String clientId() const;
35 bool isReload() const; 35 bool isReload() const;
36 36
37 void respondWith(ScriptState*, ScriptPromise, ExceptionState&); 37 void respondWith(ScriptState*, ScriptPromise, ExceptionState&);
38 38
39 const AtomicString& interfaceName() const override; 39 const AtomicString& interfaceName() const override;
40 40
41 DECLARE_VIRTUAL_TRACE(); 41 DECLARE_VIRTUAL_TRACE();
42 42
43 protected: 43 protected:
44 FetchEvent(); 44 FetchEvent();
45 FetchEvent(const AtomicString& type, const FetchEventInit&, RespondWithObser ver*); 45 FetchEvent(const AtomicString& type, const FetchEventInit&, RespondWithObser ver*);
46 46
47 private: 47 private:
48 Member<RespondWithObserver> m_observer; 48 Member<RespondWithObserver> m_observer;
49 Member<Request> m_request; 49 Member<Request> m_request;
50 String m_clientId; 50 String m_clientId;
51 bool m_isReload; 51 bool m_isReload;
52 }; 52 };
53 53
54 } // namespace blink 54 } // namespace blink
55 55
56 #endif // FetchEvent_h 56 #endif // FetchEvent_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698