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

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

Issue 1387773002: Oilpan: fix build after r352251. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/core/v8/RejectedPromises.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/bindings/core/v8/RejectedPromises.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/RejectedPromises.h b/third_party/WebKit/Source/bindings/core/v8/RejectedPromises.h
index 61212574d23ad83f85d3acfeba7396922a176d79..76c67b740f16e6faf8c5ddb6f229de693fd60d00 100644
--- a/third_party/WebKit/Source/bindings/core/v8/RejectedPromises.h
+++ b/third_party/WebKit/Source/bindings/core/v8/RejectedPromises.h
@@ -37,10 +37,14 @@ public:
private:
class Message;
- void processQueueNow(PassOwnPtrWillBeRawPtr<WillBeHeapDeque<OwnPtrWillBeMember<Message>>>);
+ using MessageQueue = WillBeHeapDeque<OwnPtrWillBeMember<Message>>;
+
+ PassOwnPtrWillBeRawPtr<MessageQueue> createMessageQueue();
+
+ void processQueueNow(PassOwnPtrWillBeRawPtr<MessageQueue>);
void revokeNow(PassOwnPtrWillBeRawPtr<Message>);
- WillBeHeapDeque<OwnPtrWillBeMember<Message>> m_queue;
+ MessageQueue m_queue;
WillBeHeapVector<OwnPtrWillBeMember<Message>> m_reportedAsErrors;
};
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/core/v8/RejectedPromises.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698