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

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

Issue 1370203007: Revert of 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 76c67b740f16e6faf8c5ddb6f229de693fd60d00..61212574d23ad83f85d3acfeba7396922a176d79 100644
--- a/third_party/WebKit/Source/bindings/core/v8/RejectedPromises.h
+++ b/third_party/WebKit/Source/bindings/core/v8/RejectedPromises.h
@@ -37,14 +37,10 @@
private:
class Message;
- using MessageQueue = WillBeHeapDeque<OwnPtrWillBeMember<Message>>;
-
- PassOwnPtrWillBeRawPtr<MessageQueue> createMessageQueue();
-
- void processQueueNow(PassOwnPtrWillBeRawPtr<MessageQueue>);
+ void processQueueNow(PassOwnPtrWillBeRawPtr<WillBeHeapDeque<OwnPtrWillBeMember<Message>>>);
void revokeNow(PassOwnPtrWillBeRawPtr<Message>);
- MessageQueue m_queue;
+ WillBeHeapDeque<OwnPtrWillBeMember<Message>> 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