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

Unified Diff: third_party/WebKit/Source/modules/websockets/DOMWebSocket.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
Index: third_party/WebKit/Source/modules/websockets/DOMWebSocket.h
diff --git a/third_party/WebKit/Source/modules/websockets/DOMWebSocket.h b/third_party/WebKit/Source/modules/websockets/DOMWebSocket.h
index 4ae0affcb89fd60317ad5f8b3ed835e44f83b72d..c8654c03a8efa283998ad05c1dcd96e7942ca259 100644
--- a/third_party/WebKit/Source/modules/websockets/DOMWebSocket.h
+++ b/third_party/WebKit/Source/modules/websockets/DOMWebSocket.h
@@ -154,7 +154,7 @@ private:
// Dispatches the event if this queue is active.
// Queues the event if this queue is suspended.
// Does nothing otherwise.
- void dispatch(PassRefPtrWillBeRawPtr<Event> /* event */);
+ void dispatch(RawPtr<Event> /* event */);
bool isEmpty() const;
@@ -179,8 +179,8 @@ private:
void resumeTimerFired(Timer<EventQueue>*);
State m_state;
- RawPtrWillBeMember<EventTarget> m_target;
- WillBeHeapDeque<RefPtrWillBeMember<Event>> m_events;
+ Member<EventTarget> m_target;
+ HeapDeque<Member<Event>> m_events;
Timer<EventQueue> m_resumeTimer;
};

Powered by Google App Engine
This is Rietveld 408576698