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

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, 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 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 441e3ad48635e4229818886b1440c81211ef9799..36598deaf5e8e52607e898b06da0281d7aa66ed1 100644
--- a/third_party/WebKit/Source/modules/websockets/DOMWebSocket.h
+++ b/third_party/WebKit/Source/modules/websockets/DOMWebSocket.h
@@ -151,7 +151,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;
@@ -176,8 +176,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