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

Side by Side Diff: third_party/WebKit/Source/bindings/core/v8/RejectedPromises.h

Issue 2584423002: Loading: move core/fetch to platform/loader/fetch (Closed)
Patch Set: another try Created 3 years, 10 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 | third_party/WebKit/Source/bindings/core/v8/ScriptController.h » ('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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 RejectedPromises_h 5 #ifndef RejectedPromises_h
6 #define RejectedPromises_h 6 #define RejectedPromises_h
7 7
8 #include "bindings/core/v8/SourceLocation.h" 8 #include "bindings/core/v8/SourceLocation.h"
9 #include "core/fetch/AccessControlStatus.h" 9 #include "platform/loader/fetch/AccessControlStatus.h"
10 #include "wtf/Deque.h" 10 #include "wtf/Deque.h"
11 #include "wtf/Forward.h" 11 #include "wtf/Forward.h"
12 #include "wtf/RefCounted.h" 12 #include "wtf/RefCounted.h"
13 #include "wtf/Vector.h" 13 #include "wtf/Vector.h"
14 #include <memory> 14 #include <memory>
15 15
16 namespace v8 { 16 namespace v8 {
17 class PromiseRejectMessage; 17 class PromiseRejectMessage;
18 }; 18 };
19 19
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 void processQueueNow(std::unique_ptr<MessageQueue>); 52 void processQueueNow(std::unique_ptr<MessageQueue>);
53 void revokeNow(std::unique_ptr<Message>); 53 void revokeNow(std::unique_ptr<Message>);
54 54
55 MessageQueue m_queue; 55 MessageQueue m_queue;
56 Vector<std::unique_ptr<Message>> m_reportedAsErrors; 56 Vector<std::unique_ptr<Message>> m_reportedAsErrors;
57 }; 57 };
58 58
59 } // namespace blink 59 } // namespace blink
60 60
61 #endif // RejectedPromises_h 61 #endif // RejectedPromises_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/core/v8/ScriptController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698