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

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

Issue 1919643002: Remove RefCountedGarbageCollected<>. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@sof-data-pers
Patch Set: rebased Created 4 years, 7 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/platform/TimerTest.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 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 "core/fetch/AccessControlStatus.h" 8 #include "core/fetch/AccessControlStatus.h"
9 #include "platform/heap/Handle.h" 9 #include "wtf/Deque.h"
10 #include "wtf/Forward.h"
11 #include "wtf/RefCounted.h"
12 #include "wtf/Vector.h"
10 13
11 namespace v8 { 14 namespace v8 {
12 class PromiseRejectMessage; 15 class PromiseRejectMessage;
13 }; 16 };
14 17
15 namespace blink { 18 namespace blink {
16 19
17 class ScriptCallStack; 20 class ScriptCallStack;
18 class ScriptState; 21 class ScriptState;
19 22
(...skipping 24 matching lines...) Expand all
44 void processQueueNow(PassOwnPtr<MessageQueue>); 47 void processQueueNow(PassOwnPtr<MessageQueue>);
45 void revokeNow(PassOwnPtr<Message>); 48 void revokeNow(PassOwnPtr<Message>);
46 49
47 MessageQueue m_queue; 50 MessageQueue m_queue;
48 Vector<OwnPtr<Message>> m_reportedAsErrors; 51 Vector<OwnPtr<Message>> m_reportedAsErrors;
49 }; 52 };
50 53
51 } // namespace blink 54 } // namespace blink
52 55
53 #endif // RejectedPromises_h 56 #endif // RejectedPromises_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/TimerTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698