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

Side by Side Diff: Source/modules/serviceworkers/RespondWithObserver.h

Issue 641083002: Propagate error/exception information for rejected Promises in Service workers. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « no previous file | Source/modules/serviceworkers/RespondWithObserver.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 RespondWithObserver_h 5 #ifndef RespondWithObserver_h
6 #define RespondWithObserver_h 6 #define RespondWithObserver_h
7 7
8 #include "core/dom/ContextLifecycleObserver.h" 8 #include "core/dom/ContextLifecycleObserver.h"
9 #include "platform/heap/Handle.h" 9 #include "platform/heap/Handle.h"
10 #include "public/platform/WebURLRequest.h" 10 #include "public/platform/WebURLRequest.h"
(...skipping 15 matching lines...) Expand all
26 static RespondWithObserver* create(ExecutionContext*, int eventID, WebURLReq uest::FetchRequestMode, WebURLRequest::FrameType); 26 static RespondWithObserver* create(ExecutionContext*, int eventID, WebURLReq uest::FetchRequestMode, WebURLRequest::FrameType);
27 27
28 virtual void contextDestroyed() OVERRIDE; 28 virtual void contextDestroyed() OVERRIDE;
29 29
30 void didDispatchEvent(); 30 void didDispatchEvent();
31 31
32 // Observes the promise and delays calling didHandleFetchEvent() until the 32 // Observes the promise and delays calling didHandleFetchEvent() until the
33 // given promise is resolved or rejected. 33 // given promise is resolved or rejected.
34 void respondWith(ScriptState*, const ScriptValue&, ExceptionState&); 34 void respondWith(ScriptState*, const ScriptValue&, ExceptionState&);
35 35
36 void responseWasRejected(); 36 void responseWasRejected(const ScriptValue&);
37 void responseWasFulfilled(const ScriptValue&); 37 void responseWasFulfilled(const ScriptValue&);
38 38
39 void trace(Visitor*) { } 39 void trace(Visitor*) { }
40 40
41 private: 41 private:
42 class ThenFunction; 42 class ThenFunction;
43 43
44 RespondWithObserver(ExecutionContext*, int eventID, WebURLRequest::FetchRequ estMode, WebURLRequest::FrameType); 44 RespondWithObserver(ExecutionContext*, int eventID, WebURLRequest::FetchRequ estMode, WebURLRequest::FrameType);
45 45
46 int m_eventID; 46 int m_eventID;
47 WebURLRequest::FetchRequestMode m_requestMode; 47 WebURLRequest::FetchRequestMode m_requestMode;
48 WebURLRequest::FrameType m_frameType; 48 WebURLRequest::FrameType m_frameType;
49 49
50 enum State { Initial, Pending, Done }; 50 enum State { Initial, Pending, Done };
51 State m_state; 51 State m_state;
52 }; 52 };
53 53
54 } // namespace blink 54 } // namespace blink
55 55
56 #endif // RespondWithObserver_h 56 #endif // RespondWithObserver_h
OLDNEW
« no previous file with comments | « no previous file | Source/modules/serviceworkers/RespondWithObserver.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698