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

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

Issue 2191533003: Refactor Timer classes in preparation for landing FrameTimers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More build fixes Created 4 years, 5 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 15fb73809e5d204c037160df13f04c0d8e9e352c..fab9dc021a743a804777258672513738464d1f1a 100644
--- a/third_party/WebKit/Source/modules/websockets/DOMWebSocket.h
+++ b/third_party/WebKit/Source/modules/websockets/DOMWebSocket.h
@@ -176,7 +176,7 @@ private:
// Dispatches queued events if this queue is active.
// Does nothing otherwise.
void dispatchQueuedEvents();
- void resumeTimerFired(Timer<EventQueue>*);
+ void resumeTimerFired(TimerBase*);
State m_state;
Member<EventTarget> m_target;
@@ -217,7 +217,7 @@ private:
// Updates m_bufferedAmountAfterClose given the amount of data passed to
// send() method after the state changed to CLOSING or CLOSED.
void updateBufferedAmountAfterClose(uint64_t);
- void reflectBufferedAmountConsumption(Timer<DOMWebSocket>*);
+ void reflectBufferedAmountConsumption(TimerBase*);
void releaseChannel();
void recordSendTypeHistogram(WebSocketSendType);

Powered by Google App Engine
This is Rietveld 408576698